You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
importsnowflake.connector# Create a connection objectsnowflake_connection=snowflake.connector.connect(
user='BONSAI_FIVETRAN_USER',
password='fakepassword',
account='fakeaccount',
warehouse='WAREHOUSE',
database='DATABASE',
schema='SCHEMA'
)
# Queriessubscription_book_query="SELECT * FROM A_TABLE_WITH_TIMESTAMPDATA"# Create a cursor object.cur=snowflake_connection.cursor()
# Execute a statement that will generate a result set.cur.execute(subscription_book_query)
rows= []
# Fetch the resultsforrowincur:
rows.append(rows)
What did you expect to see?
All the data from my SQL query
Can you set logging to DEBUG and collect the logs?
snowflake.connector.errors.InterfaceError: 252005: Failed to convert current row, cause: <built-in method utcfromtimestamp of type object at 0x7f6f891bdf00> returned a result with an exception set
The text was updated successfully, but these errors were encountered:
github-actionsbot
changed the title
snowflake.connector.errors.InterfaceError: 252005
SNOW-892350: snowflake.connector.errors.InterfaceError: 252005
Aug 14, 2023
marking this issue as closed as it has been not responded to since quite a while. if you feel this is an issue with the Python Connector, please provide the reproduction dataset which when used for the query, reproduces the issue with the latest version of the connector and we can look further. Thank you !
Python version
3.11.1
Operating system and processor architecture
Linux-6.1.27-060127-generic-x86_64-with-glibc2.35
Installed packages
What did you do?
What did you expect to see?
All the data from my SQL query
Can you set logging to DEBUG and collect the logs?
The text was updated successfully, but these errors were encountered: