我在使用 Snowflake 的 pandas 连接器时遇到问题。
此代码的最后一行导致 python 内核立即死亡。关于如何诊断这种情况的任何建议?
import pyarrow
import snowflake.connector
import pandas as pd
ctx = snowflake.connector.connect(
user=********,
password=********,
account=********,
warehouse='compute_wh',
database='SNOWFLAKE_SAMPLE_DATA',
schema='WEATHER'
)
query = 'select * from weather_14_total'
cs = ctx.cursor()
cs.execute()
cs.fetch_pandas_all()
提前致谢。