File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed
Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 1919from databricks .sql .thrift_api .TCLIService import ttypes
2020from databricks .sql .types import Row
2121from databricks .sql .exc import Error , RequestError , CursorAlreadyClosedError
22- from databricks .sql .utils import ColumnTable , ColumnQueue , JsonQueue
22+ from databricks .sql .utils import ColumnTable , ColumnQueue
2323from databricks .sql .backend .types import CommandId , CommandState , ExecuteResponse
2424
2525logger = logging .getLogger (__name__ )
@@ -484,7 +484,9 @@ def __init__(
484484
485485 def _fill_results_buffer (self ):
486486 """Fill the results buffer from the backend."""
487- raise NotImplementedError ("fetchall_arrow is not implemented for SEA backend" )
487+ raise NotImplementedError (
488+ "_fill_results_buffer is not implemented for SEA backend"
489+ )
488490
489491 def fetchone (self ) -> Optional [Row ]:
490492 """
Original file line number Diff line number Diff line change @@ -195,6 +195,7 @@ def test_fill_results_buffer_not_implemented(
195195 )
196196
197197 with pytest .raises (
198- NotImplementedError , match = "fetchone is not implemented for SEA backend"
198+ NotImplementedError ,
199+ match = "_fill_results_buffer is not implemented for SEA backend" ,
199200 ):
200201 result_set ._fill_results_buffer ()
You can’t perform that action at this time.
0 commit comments