Skip to content

Commit 8d20b79

Browse files
committed
grammar fix
1 parent 1f3bc19 commit 8d20b79

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/databricks/sql/thrift_backend.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1047,7 +1047,7 @@ def fetch_results(
10471047
resp = self.make_request(self._client.FetchResults, req)
10481048
if resp.results.startRowOffset > expected_row_start_offset:
10491049
raise DataError(
1050-
"fetch_results failed due to inconsistency in the state between the client and the server. Expected results to start from {} but they instead start at {}, some result batch must have been skipped".format(
1050+
"fetch_results failed due to inconsistency in the state between the client and the server. Expected results to start from {} but they instead start at {}, some result batches must have been skipped".format(
10511051
expected_row_start_offset, resp.results.startRowOffset
10521052
)
10531053
)

0 commit comments

Comments
 (0)