Skip to content

Commit ed6ade4

Browse files
[xy] Upgrade snowflake library version and fix datetime column type. (mage-ai#4524)
* [xy] Upgrade snowflake library version and fix datetime column type. * [xy] Remove duplicate libraries. * [xy] Update kwargs.
1 parent 76ae424 commit ed6ade4

File tree

4 files changed

+15
-29
lines changed

4 files changed

+15
-29
lines changed

mage_ai/io/snowflake.py

+11-4
Original file line numberDiff line numberDiff line change
@@ -281,14 +281,21 @@ def __process():
281281
""", timeout=self.timeout)
282282

283283
else:
284+
write_kwargs = merge_dict(
285+
dict(
286+
auto_create_table=should_create_table,
287+
database=database,
288+
schema=schema,
289+
# This param makes sure datetime column is written correctly
290+
use_logical_type=True,
291+
),
292+
kwargs or dict(),
293+
)
284294
write_pandas(
285295
self.conn,
286296
df,
287297
table_name,
288-
database=database,
289-
schema=schema,
290-
auto_create_table=should_create_table,
291-
**kwargs,
298+
**write_kwargs,
292299
)
293300

294301
if verbose:

mage_integrations/requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ requests_mock==1.10.0
3434
simple_salesforce~=1.12.5
3535
simplejson
3636
singer_sdk~=0.34.1
37-
snowflake-connector-python==3.2.1
37+
snowflake-connector-python==3.4.0
3838
sshtunnel==0.4.0
3939
stripe==5.5.0
4040
terminaltables==3.1.10

requirements.txt

+1-22
Original file line numberDiff line numberDiff line change
@@ -72,14 +72,13 @@ opentelemetry-instrumentation-tornado==0.41b0
7272
oracledb==1.3.1
7373
pinotdb==5.1.0
7474
prometheus_client>=0.18.0
75-
protobuf>=4.0.0
7675
psycopg2==2.9.3
7776
psycopg2-binary==2.9.3
7877
pydruid==0.6.5
7978
pyodbc==4.0.35
8079
redshift-connector==2.0.915
8180
lxml==4.9.4
82-
snowflake-connector-python==3.2.1
81+
snowflake-connector-python==3.4.0
8382
sshtunnel==0.4.0
8483
tables==3.7.0
8584
trino~=0.326
@@ -118,43 +117,23 @@ dbt-sqlserver==1.3.1
118117
dbt-trino==1.7.1
119118

120119
attrs==17.4.0
121-
azure-storage-blob==12.14.1
122120
backoff
123121
clickhouse_sqlalchemy
124122
deltalake==0.7.0
125-
elasticsearch==8.9.0
126123
facebook_business==17.0.2
127124
gnupg==2.3.1
128125
google-analytics-data==0.14.2
129-
google-api-python-client==2.70.0
130-
google-cloud-bigquery~=3.0
131126
google-cloud-bigquery-storage==2.16.2
132-
google-cloud-storage==2.5.0
133-
httpx==0.23.1
134127
httpx[http2]
135-
kafka-python~=2.0.2
136-
mysql-connector-python~=8.2.0
137-
opensearch-py~=2.0.0
138-
oracledb==1.3.1
139128
pendulum==2.1.0
140-
protobuf>=4.0.0
141-
psycopg2==2.9.3
142-
psycopg2-binary==2.9.3
143-
pymongo==4.3.3
144129
pymongo_schema==0.4.1
145-
python-dateutil==2.8.2
146130
python-magic==0.4.27
147131
redshift-connector~=2.0.915
148-
requests~=2.31.0
149132
requests_mock==1.10.0
150133
simple_salesforce~=1.12.5
151-
simplejson
152134
singer_sdk~=0.34.1
153-
snowflake-connector-python==3.2.1
154-
sshtunnel==0.4.0
155135
stripe==5.5.0
156136
terminaltables==3.1.10
157-
trino~=0.326
158137
twitter-ads==11.0.0
159138
tzlocal==4.2
160139
xlsx2csv==0.8.1

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ def readme():
106106
'botocore==1.29.60',
107107
],
108108
'snowflake': [
109-
'snowflake-connector-python==3.2.1',
109+
'snowflake-connector-python==3.4.0',
110110
],
111111
'spark': [
112112
'boto3==1.26.60',
@@ -186,7 +186,7 @@ def readme():
186186
'redshift-connector==2.0.915',
187187
'lxml==4.9.4',
188188
'requests_aws4auth==1.1.2',
189-
'snowflake-connector-python==3.2.1',
189+
'snowflake-connector-python==3.4.0',
190190
'sshtunnel==0.4.0',
191191
'stomp.py==8.1.0',
192192
'thefuzz[speedup]==0.19.0',

0 commit comments

Comments
 (0)