Skip to content

Commit 727c05d

Browse files
committed
fix name issue
1 parent d3ebedc commit 727c05d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sqlutilpy/sqlutil.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -728,9 +728,9 @@ def upload(tableName,
728728
cur.execute(query1)
729729
nsplit = 100000
730730
N = len(arrays[0])
731+
names = ','.join(names)
731732
for i in range(0, N, nsplit):
732733
try:
733-
names = ','.join(names)
734734
with cur.copy(
735735
f'''copy {tableName}({names}) from stdin with delimiter '{delimiter}' '''
736736
) as copy:

0 commit comments

Comments
 (0)