CALL expression
expression
: Function expressionCALL catalog_name.`system`.procedure_name(arg_name_2 => arg_2, arg_name_1 => arg_1)#When parameters are passed by position, only the end parameter can be omitted if the parameters are optional.CALL catalog_name.system.procedure_name(arg_1, arg_2, ... arg_n)#Set the current snapshot to db.sample1:CALL catalog_name.system.set_current_snapshot('db.sample', 1)
Was this page helpful?