summaryrefslogtreecommitdiffstats
path: root/tests/test_expressions.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_expressions.py')
-rw-r--r--tests/test_expressions.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/test_expressions.py b/tests/test_expressions.py
index 989220e..1aab1c0 100644
--- a/tests/test_expressions.py
+++ b/tests/test_expressions.py
@@ -556,6 +556,7 @@ class TestExpressions(unittest.TestCase):
self.assertIsInstance(parse_one("HEX(foo)"), exp.Hex)
self.assertIsInstance(parse_one("TO_HEX(foo)", read="bigquery"), exp.Hex)
self.assertIsInstance(parse_one("TO_HEX(MD5(foo))", read="bigquery"), exp.MD5)
+ self.assertIsInstance(parse_one("TRANSFORM(a, b)", read="spark"), exp.Transform)
def test_column(self):
column = parse_one("a.b.c.d")