Adding upstream version 11.7.1.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
b4e0e3422e
commit
82a8846a46
144 changed files with 44104 additions and 39367 deletions
|
@ -244,11 +244,11 @@ class TestExpressions(unittest.TestCase):
|
|||
def test_function_building(self):
|
||||
self.assertEqual(exp.func("max", 1).sql(), "MAX(1)")
|
||||
self.assertEqual(exp.func("max", 1, 2).sql(), "MAX(1, 2)")
|
||||
self.assertEqual(exp.func("bla", 1, "foo").sql(), "BLA(1, 'foo')")
|
||||
self.assertEqual(exp.func("bla", 1, "foo").sql(), "BLA(1, foo)")
|
||||
self.assertEqual(exp.func("COUNT", exp.Star()).sql(), "COUNT(*)")
|
||||
self.assertEqual(exp.func("bloo").sql(), "BLOO()")
|
||||
self.assertEqual(
|
||||
exp.func("locate", "x", "xo", dialect="hive").sql("hive"), "LOCATE('x', 'xo')"
|
||||
exp.func("locate", "'x'", "'xo'", dialect="hive").sql("hive"), "LOCATE('x', 'xo')"
|
||||
)
|
||||
|
||||
self.assertIsInstance(exp.func("instr", "x", "b", dialect="mysql"), exp.StrPosition)
|
||||
|
@ -528,6 +528,7 @@ class TestExpressions(unittest.TestCase):
|
|||
self.assertIsInstance(parse_one("VARIANCE_POP(a)"), exp.VariancePop)
|
||||
self.assertIsInstance(parse_one("YEAR(a)"), exp.Year)
|
||||
self.assertIsInstance(parse_one("HLL(a)"), exp.Hll)
|
||||
self.assertIsInstance(parse_one("ARRAY(time, foo)"), exp.Array)
|
||||
|
||||
def test_column(self):
|
||||
column = parse_one("a.b.c.d")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue