We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57a071b commit f3f5b8bCopy full SHA for f3f5b8b
src/sqlutilpy/sqlutil.py
@@ -527,7 +527,7 @@ def __create_schema(tableName, arrays, names, temp=False):
527
(np.uint64, 'bigint'), (np.int16, 'smallint'),
528
(np.uint8, 'smallint'), (np.int8, 'smallint'),
529
(np.float32, 'real'), (np.float64, 'double precision'),
530
- (np.string_, 'varchar'), (np.str_, 'varchar'),
+ (np.bytes_, 'varchar'), (np.str_, 'varchar'),
531
(np.bool_, 'boolean'), (np.datetime64, 'timestamp')])
532
if temp:
533
temp = 'temporary'
@@ -553,7 +553,7 @@ def __print_arrays(arrays, f, delimiter=' '):
553
format_dict = dict([(np.int32, '%d'), (np.int64, '%d'), (np.int16, '%d'),
554
(np.int8, '%d'), (np.uint8, '%d'),
555
(np.float32, '%.18e'), (np.float64, '%.18e'),
556
- (np.string_, '%s'), (np.str_, '%s'),
+ (np.bytes_, '%s'), (np.str_, '%s'),
557
(np.datetime64, '%s'), (np.bool_, '%d')])
558
fmts = []
559
array_mode = False
0 commit comments