Skip to content

Commit

Permalink
[BABEL-284] Support table name prefix in pivot for column (#255)
Browse files Browse the repository at this point in the history
Support table name prefix in pivot for column

Task: BABEL-284
Signed-off-by: Yanjie Xu <[email protected]>
  • Loading branch information
RIC06X authored and priyansx committed Dec 29, 2023
1 parent 16e5675 commit 0aa268d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/include/nodes/parsenodes.h
Original file line number Diff line number Diff line change
Expand Up @@ -1994,9 +1994,9 @@ typedef struct SelectStmt
bool isPivot;
struct SelectStmt *srcSql;
struct SelectStmt *catSql;
List *value_col_strlist;
char *pivotCol;
Node *aggFunc;
List *value_col_strlist;
ColumnRef *pivotCol;
Node *aggFunc;
} SelectStmt;


Expand Down

0 comments on commit 0aa268d

Please sign in to comment.