diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2023-04-03 07:31:50 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2023-04-03 07:31:50 +0000 |
commit | 1fb60a37d31eacbac62ddafde51b829522925694 (patch) | |
tree | 5c04a33630f7a2cd4cff248e965053f97ec3e4ac /tests/test_parser.py | |
parent | Adding upstream version 11.4.1. (diff) | |
download | sqlglot-1fb60a37d31eacbac62ddafde51b829522925694.tar.xz sqlglot-1fb60a37d31eacbac62ddafde51b829522925694.zip |
Adding upstream version 11.4.5.upstream/11.4.5
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/test_parser.py')
-rw-r--r-- | tests/test_parser.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/test_parser.py b/tests/test_parser.py index 861e47f..07a5fd7 100644 --- a/tests/test_parser.py +++ b/tests/test_parser.py @@ -79,6 +79,9 @@ class TestParser(unittest.TestCase): def test_union_order(self): self.assertIsInstance(parse_one("SELECT * FROM (SELECT 1) UNION SELECT 2"), exp.Union) + self.assertIsInstance( + parse_one("SELECT x FROM y HAVING x > (SELECT 1) UNION SELECT 2"), exp.Union + ) def test_select(self): self.assertIsNotNone(parse_one("select 1 natural")) @@ -357,7 +360,7 @@ class TestParser(unittest.TestCase): @patch("sqlglot.parser.logger") def test_create_table_error(self, logger): parse_one( - """CREATE TABLE PARTITION""", + """CREATE TABLE SELECT""", error_level=ErrorLevel.WARN, ) |