This repository was archived by the owner on May 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 305
Expand file tree
/
Copy pathsnowflake.py
More file actions
74 lines (55 loc) · 2.37 KB
/
snowflake.py
File metadata and controls
74 lines (55 loc) · 2.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
import logging
from .database_types import *
from .base import Database, import_helper, _query_conn, CHECKSUM_MASK
@import_helper("snowflake")
def import_snowflake():
import snowflake.connector
return snowflake
class Snowflake(Database):
TYPE_CLASSES = {
# Timestamps
"TIMESTAMP_NTZ": Timestamp,
"TIMESTAMP_LTZ": Timestamp,
"TIMESTAMP_TZ": TimestampTZ,
# Numbers
"NUMBER": Decimal,
"FLOAT": Float,
# Text
"TEXT": Text,
}
ROUNDS_ON_PREC_LOSS = False
def __init__(self, *, schema: str, **kw):
snowflake = import_snowflake()
logging.getLogger("snowflake.connector").setLevel(logging.WARNING)
# Got an error: snowflake.connector.network.RetryRequest: could not find io module state (interpreter shutdown?)
# It's a known issue: https://github.com/snowflakedb/snowflake-connector-python/issues/145
# Found a quick solution in comments
logging.getLogger("snowflake.connector.network").disabled = True
assert '"' not in schema, "Schema name should not contain quotes!"
self._conn = snowflake.connector.connect(
schema=f'"{schema}"',
**kw,
)
self.default_schema = schema
def close(self):
self._conn.close()
def _query(self, sql_code: str) -> list:
"Uses the standard SQL cursor interface"
return _query_conn(self._conn, sql_code)
def quote(self, s: str):
return f'"{s}"'
def md5_to_int(self, s: str) -> str:
return f"BITAND(md5_number_lower64({s}), {CHECKSUM_MASK})"
def to_string(self, s: str):
return f"cast({s} as string)"
def select_table_schema(self, path: DbPath) -> str:
schema, table = self._normalize_table_path(path)
return super().select_table_schema((schema, table))
def normalize_timestamp(self, value: str, coltype: TemporalType) -> str:
if coltype.rounds:
timestamp = f"to_timestamp(round(date_part(epoch_nanosecond, {value}::timestamp(9))/1000000000, {coltype.precision}))"
else:
timestamp = f"cast({value} as timestamp({coltype.precision}))"
return f"to_char({timestamp}, 'YYYY-MM-DD HH24:MI:SS.FF6')"
def normalize_number(self, value: str, coltype: FractionalType) -> str:
return self.to_string(f"cast({value} as decimal(38, {coltype.precision}))")