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
// Will return io.EOF if there are no more records
249
+
Next() (arrow.Record, error)
250
+
251
+
// Return true if the iterator contains more batches, false otherwise.
252
+
HasNext() bool
253
+
254
+
// Release any resources in use by the iterator.
255
+
Close()
256
+
}
257
+
258
+
The driver.Rows instance retrieved using Conn.Raw() can be converted to DBSQLRows via a type assertion, then use GetArrowBatches() to retrieve a batch iterator.
259
+
If the DBSQLArrowBatchIterator is not closed it will leak resources, such as the underlying connection.
0 commit comments