Adding upstream version 16.2.1.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
577b79f5a7
commit
d61627452f
106 changed files with 41940 additions and 40162 deletions
|
@ -127,6 +127,16 @@ class TestBuild(unittest.TestCase):
|
|||
"SELECT x FROM tbl WHERE x > 0 FOR SHARE",
|
||||
"postgres",
|
||||
),
|
||||
(
|
||||
lambda: select("x").from_("tbl").hint("repartition(100)"),
|
||||
"SELECT /*+ REPARTITION(100) */ x FROM tbl",
|
||||
"spark",
|
||||
),
|
||||
(
|
||||
lambda: select("x").from_("tbl").hint("coalesce(3)", "broadcast(x)"),
|
||||
"SELECT /*+ COALESCE(3), BROADCAST(x) */ x FROM tbl",
|
||||
"spark",
|
||||
),
|
||||
(
|
||||
lambda: select("x", "y").from_("tbl").group_by("x"),
|
||||
"SELECT x, y FROM tbl GROUP BY x",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue