We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 39a9623 commit 1ab35d9Copy full SHA for 1ab35d9
1 file changed
vertica_python/vertica/cursor.py
@@ -308,12 +308,12 @@ def executemany(self,
308
#################################################################
309
m = self._insert_statement.match(operation)
310
if m:
311
- target = as_str(m.group('target'))
+ target = m.group('target')
312
313
- variables = as_str(m.group('variables'))
+ variables = m.group('variables')
314
variables = ",".join([variable.strip().strip('"') for variable in variables.split(",")])
315
316
- values = as_str(m.group('values'))
+ values = m.group('values')
317
values = "|".join([value.strip().strip('"') for value in values.split(",")])
318
seq_of_values = [self.format_operation_with_parameters(values, parameters, is_copy_data=True)
319
for parameters in seq_of_parameters]
0 commit comments