From f1c2dbe3b17a0d5edffbb65b85b642d0bb2756c5 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Tue, 19 Dec 2023 12:01:55 +0100 Subject: Merging upstream version 20.3.0. Signed-off-by: Daniel Baumann --- tests/test_executor.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'tests/test_executor.py') diff --git a/tests/test_executor.py b/tests/test_executor.py index ffe00a7..78d037a 100644 --- a/tests/test_executor.py +++ b/tests/test_executor.py @@ -289,11 +289,6 @@ class TestExecutor(unittest.TestCase): ["a"], [(1,), (2,), (3,)], ), - ( - "SELECT 1 AS a UNION SELECT 2 AS a UNION SELECT 3 AS a", - ["a"], - [(1,), (2,), (3,)], - ), ( "SELECT 1 / 2 AS a", ["a"], @@ -320,6 +315,11 @@ class TestExecutor(unittest.TestCase): (None,), ], ), + ( + "SELECT a FROM x UNION ALL SELECT a FROM x LIMIT 1", + ["a"], + [("a",)], + ), ]: with self.subTest(sql): if isinstance(rows, list): -- cgit v1.2.3