select支持rotate/not rotate函数

This commit is contained in:
liujinyu
2024-03-18 17:34:11 +08:00
committed by yaoxin
parent 8dac2e7acc
commit e72208e2df
34 changed files with 1791 additions and 26 deletions

View File

@ -1312,6 +1312,7 @@ static Node* tryTransformFunc(ParseState* pstate, List* fields, int location)
fn->funcname = fields;
fn->args = NIL;
fn->agg_order = NIL;
fn->agg_filter = NULL;
fn->agg_star = FALSE;
fn->agg_distinct = FALSE;
fn->func_variadic = FALSE;
@ -2894,6 +2895,7 @@ static Node* transformPredictByFunction(ParseState* pstate, PredictByFunction* p
}
n->agg_order = NULL;
n->agg_filter = NULL;
n->agg_star = FALSE;
n->agg_distinct = FALSE;
n->func_variadic = FALSE;