describe_parameter_set Example # 4: No Support for PARTITION BY ANY Clause

An example UDF that informs the server that it cannot perform partitioning on any columns, because the UDF does not support the PARTITION BY ANY clause.

void UDF_CALLBACK my_tpf_proc_describe( a_v4_extfn_proc_context *ctx )
{
    // No describe calls
}
Related reference
Example Procedure Definition
describe_parameter_set Example # 1: One-Column Partitioning on Column 1
describe_parameter_set Example # 2: Two-Column Partitioning
describe_parameter_set Example # 3: Any-Column Partitioning
describe_parameter_set Example # 5: No Partitioning Support
describe_parameter_set Example # 6: One-Column Partitioning on Column 2