We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 25fc614 commit f2ed4efCopy full SHA for f2ed4ef
sdk/python/feast/templates/snowflake/bootstrap.py
@@ -1,7 +1,7 @@
1
import click
2
import snowflake.connector
3
4
-from feast.infra.utils.snowflake_utils import copy_uploaded_data_to_table
+from feast.infra.utils.snowflake_utils import write_pandas
5
6
7
def bootstrap():
@@ -58,7 +58,7 @@ def bootstrap():
58
cur.execute('CREATE SCHEMA IF NOT EXISTS "PUBLIC"')
59
cur.execute('USE SCHEMA "PUBLIC"')
60
cur.execute(f'DROP TABLE IF EXISTS "{project_name}_feast_driver_hourly_stats"')
61
- copy_uploaded_data_to_table(
+ write_pandas(
62
conn,
63
driver_df,
64
f"{project_name}_feast_driver_hourly_stats",
0 commit comments