We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c4e8103 commit 6c16b70Copy full SHA for 6c16b70
src/databricks/sqlalchemy/test_local/test_ddl.py
@@ -79,7 +79,8 @@ def table_without_comment(self, metadata) -> Table:
79
def test_create_table_with_comment(self, table_with_comment):
80
stmt = CreateTable(table_with_comment)
81
output = self.compile(stmt)
82
- assert "USING DELTA COMMENT 'foobar'" in output
+ assert "USING DELTA" in output
83
+ assert "COMMENT 'foobar'" in output
84
85
def test_alter_table_add_comment(self, table_without_comment: Table):
86
table_without_comment.comment = "wireless mechanical keyboard"
0 commit comments