Parametertypecallback 函数
此函数定义发送到主函数的参数的输出数据类型、长度/精度和小数位数。
示例
FunctionNameParameterTypes <- function() {
parameters <- list(datatype = c("int", "varchar"),
length = c("NA", "100"),
scale = c("NA", "NA"),
name = c("k", "algorithm"))
return(parameters)
}
参数
描述
当创建 parametertypecallback
函数时,为要发送到函数的每个参数定义一行。如果您的 UDx 使用参数,则必须指定 parametertypecallback
函数。
parametertypecallback
不接受任何输入实参。