Skip to content

Commit f2ed4ef

Browse files
committed
revert accidental change
Signed-off-by: pyalex <moskalenko.alexey@gmail.com>
1 parent 25fc614 commit f2ed4ef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sdk/python/feast/templates/snowflake/bootstrap.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import click
22
import snowflake.connector
33

4-
from feast.infra.utils.snowflake_utils import copy_uploaded_data_to_table
4+
from feast.infra.utils.snowflake_utils import write_pandas
55

66

77
def bootstrap():
@@ -58,7 +58,7 @@ def bootstrap():
5858
cur.execute('CREATE SCHEMA IF NOT EXISTS "PUBLIC"')
5959
cur.execute('USE SCHEMA "PUBLIC"')
6060
cur.execute(f'DROP TABLE IF EXISTS "{project_name}_feast_driver_hourly_stats"')
61-
copy_uploaded_data_to_table(
61+
write_pandas(
6262
conn,
6363
driver_df,
6464
f"{project_name}_feast_driver_hourly_stats",

0 commit comments

Comments
 (0)