ylliX - Online Advertising Network

Can snowflake sproc decorator support passing of argument names? Currently I see sp’s are getting created with argument names as arg1, arg2 etc

I have defined my sp through a python file in my application as below @sproc(return_type=StringType(), input_types=[StringType(), StringType(), StringType()], name=”CLEAN_TABLES”, is_permanent=True, stage_location=”@my_stage”, packages=[“snowflake-snowpark-python==1.23.0″], replace=True) def handle(session: Session, input_table_name, perm_table_name, output_table_name): ….. Running above py file is creating sp as below in snowflake account with argument names as ARG1, ARG2 etc CREATE OR REPLACE PROCEDURE MY_SF_DB.my_stage.CLEAN_TABLES(“ARG1” VARCHAR(11111111), […]