We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d882c6e commit 5a43686Copy full SHA for 5a43686
src/databricks/sql/backend/sea/queue.py
@@ -150,13 +150,8 @@ def __init__(
150
initial_links = result_data.external_links or []
151
first_link = next((l for l in initial_links if l.chunk_index == 0), None)
152
if not first_link:
153
- raise ServerOperationError(
154
- "No initial link found for chunk 0",
155
- {
156
- "operation-id": statement_id,
157
- "diagnostic-info": None,
158
- },
159
- )
+ # possibly an empty response
+ return None
160
161
# Track the current chunk we're processing
162
self._current_chunk_link = first_link
0 commit comments