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 fcffe8e commit fbd0da6Copy full SHA for fbd0da6
1 file changed
src/webapp/databricks.py
@@ -259,7 +259,7 @@ def fetch_table_data(
259
raise ValueError("Query succeeded but result data is missing.")
260
261
# Extract column names and data rows
262
- column_names = [column.name for column in response.manifest.schema]
+ column_names = [column["name"] for column in response.manifest.schema.columns]
263
data_rows = response.result.data_array
264
265
# Combine column names with corresponding row values
0 commit comments