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
249
Next() (arrow.Record, error)
@@ -255,8 +255,8 @@ The driver exposes two public interfaces for working with record batches:
255
255
Close()
256
256
}
257
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.
258
+
The driver.Rows instance retrieved using Conn.Raw() can be converted to a Databricks Rows instance via a type assertion, then use GetArrowBatches() to retrieve a batch iterator.
259
+
If the ArrowBatchIterator is not closed it will leak resources, such as the underlying connection.
260
260
Calling code must call Release() on records returned by DBSQLArrowBatchIterator.Next().
0 commit comments