diff options
Diffstat (limited to 'tests/test_expressions.py')
-rw-r--r-- | tests/test_expressions.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/test_expressions.py b/tests/test_expressions.py index c9b5279..e7a37f3 100644 --- a/tests/test_expressions.py +++ b/tests/test_expressions.py @@ -813,6 +813,7 @@ FROM foo""", self.assertEqual( exp.DataType.build("struct<x int>", dialect="spark").sql(), "STRUCT<x INT>" ) + self.assertEqual(exp.DataType.build("USER-DEFINED").sql(), "USER-DEFINED") def test_rename_table(self): self.assertEqual( |