summaryrefslogtreecommitdiffstats
path: root/tests/dialects/test_starrocks.py
blob: 96e20da3464c1db397d97b419ff9c81f5a81e867 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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")
        self.validate_identity("SELECT APPROX_COUNT_DISTINCT(a) FROM x")

    def test_time(self):
        self.validate_identity("TIMESTAMP('2022-01-01')")

    def test_regex(self):
        self.validate_all(
            "SELECT REGEXP_LIKE(abc, '%foo%')",
            write={
                "starrocks": "SELECT REGEXP(abc, '%foo%')",
            },
        )