Adding upstream version 6.0.4.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
d01130b3f1
commit
527597d2af
122 changed files with 23162 additions and 0 deletions
16
tests/test_transforms.py
Normal file
16
tests/test_transforms.py
Normal file
|
@ -0,0 +1,16 @@
|
|||
import unittest
|
||||
|
||||
from sqlglot import parse_one
|
||||
from sqlglot.transforms import unalias_group
|
||||
|
||||
|
||||
class TestTime(unittest.TestCase):
|
||||
def validate(self, transform, sql, target):
|
||||
self.assertEqual(parse_one(sql).transform(transform).sql(), target)
|
||||
|
||||
def test_unalias_group(self):
|
||||
self.validate(
|
||||
unalias_group,
|
||||
"SELECT a, b AS b, c AS c, 4 FROM x GROUP BY a, b, x.c, 4",
|
||||
"SELECT a, b AS b, c AS c, 4 FROM x GROUP BY a, 2, x.c, 4",
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue