There was an error while loading. Please reload this page.
1 parent 41521e3 commit 987e830Copy full SHA for 987e830
1 file changed
sqlglot/dialects/singlestore.py
@@ -4,6 +4,7 @@
4
from sqlglot import exp
5
from sqlglot.dialects.dialect import (
6
build_formatted_time,
7
+ NormalizationStrategy,
8
build_json_extract_path,
9
json_extract_segments,
10
json_path_key_only_name,
@@ -33,6 +34,7 @@ def cast_to_time6(expression: t.Optional[exp.Expression]) -> exp.Cast:
33
34
class SingleStore(MySQL):
35
SUPPORTS_ORDER_BY_ALL = True
36
37
+ NORMALIZATION_STRATEGY = NormalizationStrategy.CASE_INSENSITIVE
38
TIME_MAPPING: t.Dict[str, str] = {
39
"D": "%u", # Day of week (1-7)
40
"DD": "%d", # day of month (01-31)
0 commit comments