You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-30 19:23:07 +03:00
MCOL-985 Add return code test after call to buildReturnedColumn
This commit is contained in:
@ -3606,6 +3606,10 @@ ReturnedColumn* buildAggregateColumn(Item* item, gp_walk_info& gwi)
|
|||||||
else
|
else
|
||||||
{
|
{
|
||||||
rc = buildReturnedColumn(ord_col, gwi, gwi.fatalParseError);
|
rc = buildReturnedColumn(ord_col, gwi, gwi.fatalParseError);
|
||||||
|
if (!rc || gwi.fatalParseError)
|
||||||
|
{
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
// 10.2 TODO: direction is now a tri-state flag
|
// 10.2 TODO: direction is now a tri-state flag
|
||||||
rc->asc((*order_item)->direction == ORDER::ORDER_ASC ? true : false);
|
rc->asc((*order_item)->direction == ORDER::ORDER_ASC ? true : false);
|
||||||
|
Reference in New Issue
Block a user