diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-08-26 08:12:56 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-08-26 08:12:56 +0000 |
commit | d1db1c46fc67b1ff310a4067326e03a0063c8750 (patch) | |
tree | 288b386b87ee32146898bf2b8ad870a8f4fc118a /tests/test_schema.py | |
parent | Releasing debian version 25.8.1-1. (diff) | |
download | sqlglot-d1db1c46fc67b1ff310a4067326e03a0063c8750.tar.xz sqlglot-d1db1c46fc67b1ff310a4067326e03a0063c8750.zip |
Merging upstream version 25.16.1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/test_schema.py')
-rw-r--r-- | tests/test_schema.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_schema.py b/tests/test_schema.py index 21b59fd..83cbbd8 100644 --- a/tests/test_schema.py +++ b/tests/test_schema.py @@ -202,11 +202,11 @@ class TestSchema(unittest.TestCase): dialect="clickhouse", ) - table_z = exp.table_("z", db="y", catalog="x") + table_z = exp.table_("Z", db="y", catalog="x") table_w = exp.table_("w", db="y", catalog="x") self.assertEqual(schema.column_names(table_z), ["a", "B"]) - self.assertEqual(schema.column_names(table_w), ["c"]) + self.assertEqual(schema.column_names(table_w), ["C"]) schema = MappingSchema(schema={"x": {"`y`": "INT"}}, dialect="clickhouse") self.assertEqual(schema.column_names(exp.table_("x")), ["y"]) |