From cf49728f719975144a958f23ba5f3336fb81ae55 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 27 Apr 2024 04:50:25 +0200 Subject: Merging upstream version 23.12.1. Signed-off-by: Daniel Baumann --- tests/test_parser.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'tests/test_parser.py') diff --git a/tests/test_parser.py b/tests/test_parser.py index 791d352..6bcdb64 100644 --- a/tests/test_parser.py +++ b/tests/test_parser.py @@ -87,6 +87,9 @@ class TestParser(unittest.TestCase): self.assertIsNotNone(parse_one("date").find(exp.Column)) + def test_tuple(self): + parse_one("(a,)").assert_is(exp.Tuple) + def test_structs(self): cast = parse_one("cast(x as struct)") self.assertIsInstance(cast.to.expressions[0], exp.DataType) @@ -439,7 +442,7 @@ class TestParser(unittest.TestCase): self.assertEqual(expression.comments, ["comment2"]) self.assertEqual(expression.this.comments, ["comment3"]) - self.assertEqual(expression.args.get("with").comments, ["comment1.1", "comment1.2"]) + self.assertEqual(expression.args["with"].comments, ["comment1.1", "comment1.2"]) def test_type_literals(self): self.assertEqual(parse_one("int 1"), parse_one("CAST(1 AS INT)")) -- cgit v1.2.3