Skip to content

Commit f94adef

Browse files
remove excess comments (nit)
1 parent 78cfd27 commit f94adef

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/databricks/sql/result_set.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -126,8 +126,6 @@ def __init__(
126126
self._fill_results_buffer()
127127

128128
def _fill_results_buffer(self):
129-
"""Fill the results buffer using the ThriftDatabricksClient directly."""
130-
# Use the thrift_client (backend) directly to fetch results
131129
results, has_more_rows = self.backend.fetch_results(
132130
op_handle=self.command_id,
133131
max_rows=self.arraysize,
@@ -302,7 +300,6 @@ def fetchone(self) -> Optional[Row]:
302300
Fetch the next row of a query result set, returning a single sequence,
303301
or None when no more data is available.
304302
"""
305-
306303
if isinstance(self.results, ColumnQueue):
307304
res = self._convert_columnar_table(self.fetchmany_columnar(1))
308305
else:

0 commit comments

Comments
 (0)