Skip to content

Commit 9d30db7

Browse files
committed
Changes in response to review comments.
Signed-off-by: davem-bis <68955845+davem-bis@users.noreply.github.com>
1 parent a00dd42 commit 9d30db7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

sqlmesh/core/engine_adapter/databricks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -431,7 +431,7 @@ def columns(
431431
.order_by("ordinal_position ASC")
432432
)
433433

434-
self.cursor.execute(query.sql(dialect="databricks"))
434+
self.execute(query.sql(dialect=self.dialect))
435435
result = self.cursor.fetchall()
436436

437437
return {row[0]: exp.DataType.build(row[1], dialect=self.dialect) for row in result}

0 commit comments

Comments
 (0)