SnowSQL: Change to the value of the sql_split property (Pending)¶

In September 2022, the SQL splitter used by the sql_split property will change. In January 2023, the sql_split property will be removed and the new value will be the only option. You should test your implementation by setting the value of sql_split to the new value described below to determine if you encounter any compatibility issues.

Configuring the current behavior:

You can set sql_split in the SnowSQL configuration file:

[options]
sql_split=snowflake.connector.util_text
Copy

Or from the command line:

snowsql -o sql_split=snowflake.connector.util_text
Copy
Configuring the new behavior:

You can set sql_split in the SnowSQL configuration file:

[options]
sql_split=snowflake.cli.sqlsplit
Copy

Or from the command line:

snowsql -o sql_split=snowflake.cli.sqlsplit ...
Copy

Ref: 792