Open
Description
What is the current behavior?
Currently, the python connector does not have a valid parameter to enable or disable these commands, PUT and GET, like in the JDBC connector
What is the desired behavior?
The desire behavior is to be able to add this parameter on the connector instantiation
conn = snowflake.connector.connect(
user=USER,
password=PASSWORD,
account=ACCOUNT,
warehouse=WAREHOUSE,
database=DATABASE,
schema=SCHEMA,
session_parameters={
"DISABLE_PUT_AND_GET": True,
}
)
How would this improve snowflake-connector-python
?
This commands can be used to obtain access to any running application's local file, by adding this parameter we can avoid this issue