1
0
Fork 0

Adding upstream version 20.3.0.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-02-13 21:17:33 +01:00
parent 5bd573dda1
commit fd9de5e4cb
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
132 changed files with 55125 additions and 51576 deletions

View file

@ -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):