1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-29 08:21:15 +03:00

MCOL-1793 Add udafContext to the copy constructor of WindowFunctionColumn.

This commit is contained in:
David Hall
2018-11-23 12:42:29 -06:00
parent 3709fe92a5
commit 176ef2f2c1
32 changed files with 6575 additions and 6574 deletions

View File

@ -233,7 +233,8 @@ WindowFunctionColumn::WindowFunctionColumn( const WindowFunctionColumn& rhs, con
fFunctionName(rhs.functionName()),
fFunctionParms(rhs.functionParms()),
fPartitions (rhs.partitions()),
fOrderBy (rhs.orderBy())
fOrderBy (rhs.orderBy()),
udafContext(rhs.getUDAFContext())
{}
const string WindowFunctionColumn::toString() const