File tree Expand file tree Collapse file tree 1 file changed +0
-16
lines changed Expand file tree Collapse file tree 1 file changed +0
-16
lines changed Original file line number Diff line number Diff line change @@ -102,12 +102,6 @@ def is_staging_operation(self) -> bool:
102
102
"""Whether this result set represents a staging operation."""
103
103
return self ._is_staging_operation
104
104
105
- # Define abstract methods that concrete implementations must implement
106
- @abstractmethod
107
- def _fill_results_buffer (self ):
108
- """Fill the results buffer from the backend."""
109
- pass
110
-
111
105
@abstractmethod
112
106
def fetchone (self ) -> Optional [Row ]:
113
107
"""Fetch the next row of a query result set."""
@@ -509,16 +503,6 @@ def __init__(
509
503
# Initialize queue for result data if not provided
510
504
self .results = results_queue or JsonQueue ([])
511
505
512
- def _fill_results_buffer (self ):
513
- """
514
- Fill the results buffer from the backend.
515
-
516
- For SEA, we already have all the data in the results queue,
517
- so this is a no-op.
518
- """
519
- # No-op for SEA as we already have all the data
520
- pass
521
-
522
506
def _convert_arrow_table (self , table ):
523
507
"""
524
508
Convert an Arrow table to a list of Row objects.
You can’t perform that action at this time.
0 commit comments