You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-29 08:21:15 +03:00
feat(runtime)!: MCOL-678 A "GROUP BY ... WITH ROLLUP" support
Adds a special column which helps to differentiate data and rollups of various depts and a simple logic to row aggregation to add processing of subtotals.
This commit is contained in:
@ -114,6 +114,8 @@ TreeNode* ObjectReader::createTreeNode(messageqcpp::ByteStream& b)
|
||||
|
||||
case CONSTANTCOLUMN: ret = new ConstantColumn(); break;
|
||||
|
||||
case ROLLUPMARKCOLUMN: ret = new RollupMarkColumn(); break;
|
||||
|
||||
case FUNCTIONCOLUMN: ret = new FunctionColumn(); break;
|
||||
|
||||
case ROWCOLUMN: ret = new RowColumn(); break;
|
||||
|
Reference in New Issue
Block a user