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
While trying to deploy snowpark stored procedure via snowflake CLI, we could specify default value for an argument. But if we tried to remove after its being set, we couldn't remove and it still remains.
SnowCLI version
3.0.1
Python version
3.11.9
Platform
macOS-15.2-arm64-arm-64bit
What happened
While trying to deploy snowpark stored procedure via snowflake CLI, we could specify default value for an argument. But if we tried to remove after its being set, we couldn't remove and it still remains.
procedures: - name: "CICD_SP" database: "<% ctx.env.DB_NAME %>" schema: "<% ctx.env.SCHEMA_NAME %>" handler: "Demo.main" runtime: "3.11" signature: - name: "start_time" default: "test_default_value" type: string returns: string
Console output
How to reproduce
create store proc using
procedures: - name: "CICD_SP" database: "<% ctx.env.DB_NAME %>" schema: "<% ctx.env.SCHEMA_NAME %>" handler: "Demo.main" runtime: "3.11" signature: - name: "start_time" default: "test_default_value" type: string returns: string
and the deploy it.
After deploying if we try to deploy again removing
default: "test_default_value"
it doesn't remove.create store proc using
procedures: - name: "CICD_SP" database: "<% ctx.env.DB_NAME %>" schema: "<% ctx.env.SCHEMA_NAME %>" handler: "Demo.main" runtime: "3.11" signature: - name: "start_time" type: string returns: string
The text was updated successfully, but these errors were encountered: