You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This comes up when iterating over batches in to_pyarrow_batches in code like:
forbatchincon1.to_pyarrow_batches(expr):
con2.insert("table_name", batch)
# currently this needs to be# con2.insert("table_name", pa.Table.from_batches([batch]))
Ideally in most places where it makes sense a pa.RecordBatch could be implicitly coerced to a pa.Table.
The text was updated successfully, but these errors were encountered:
jcrist
added
ux
User experience related issues
ddl
Issues related to creating or altering data definitions
feature
Features or general enhancements
labels
Jan 29, 2024
This comes up when iterating over batches in
to_pyarrow_batches
in code like:Ideally in most places where it makes sense a
pa.RecordBatch
could be implicitly coerced to apa.Table
.The text was updated successfully, but these errors were encountered: