Skip to content

Commit 11614f0

Browse files
authored
Merge pull request #34 from niebayes/patch-1
fix: add the missing `options` argument for do_put
2 parents 510b3c5 + 5e6d80f commit 11614f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

flightsql/client.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def execute(self, binding: pa.RecordBatch) -> flight.FlightInfo:
7676
desc = flight_descriptor(cmd)
7777

7878
if binding is not None and binding.num_rows > 0:
79-
writer, reader = self.client.do_put(desc, binding.schema)
79+
writer, reader = self.client.do_put(desc, binding.schema, self.options)
8080
writer.write(binding)
8181
writer.done_writing()
8282
reader.read()

0 commit comments

Comments
 (0)