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 ad45046 commit 448476bCopy full SHA for 448476b
src/databricks/sql/utils.py
@@ -135,10 +135,10 @@ def build_queue(
135
Returns:
136
ResultSetQueue: The appropriate queue for the result data
137
"""
138
- if sea_result_data.data:
+ if sea_result_data.data is not None:
139
# INLINE disposition with JSON_ARRAY format
140
return JsonQueue(sea_result_data.data)
141
- elif sea_result_data.external_links:
+ elif sea_result_data.external_links is not None:
142
# EXTERNAL_LINKS disposition (not implemented yet)
143
raise NotImplementedError("EXTERNAL_LINKS disposition is not supported yet")
144
else:
0 commit comments