We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b9bed2c commit e0ede19Copy full SHA for e0ede19
1 file changed
src/databricks_ai_bridge/genie.py
@@ -55,7 +55,10 @@ def _parse_query_result(
55
56
for item in output["data_array"]:
57
row = []
58
- for column, value in zip(columns, item):
+ values = item["values"]
59
+ for column, value_obj in zip(columns, values):
60
+ value = value_obj.get("string_value") if isinstance(value_obj, dict) else value_obj
61
+
62
type_name = column["type_name"]
63
if value is None:
64
row.append(None)
0 commit comments