1
0
Fork 0
sqlglot/tests/dialects/test_starrocks.py
Daniel Baumann b7d21c45b7
Merging upstream version 10.0.1.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-02-13 14:53:05 +01:00

11 lines
291 B
Python

from tests.dialects.test_dialect import Validator
class TestMySQL(Validator):
dialect = "starrocks"
def test_identity(self):
self.validate_identity("SELECT CAST(`a`.`b` AS INT) FROM foo")
def test_time(self):
self.validate_identity("TIMESTAMP('2022-01-01')")