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
parse_item() in execplan code now always get an actual GWI structure
to avoid accedental crashes. Add check for Conversion of Big IN Predicates Into Subqueries optimization conditions. Enabled derivedTableOptimization() for group by and derived handlers. Disabled Conversion of Big IN Predicates Into Subqueries optimization. Disabled most of optimizer_flags for now. RowGroup + operator now correctly sets useStringTable flag that instructs code to check StringStore instead of plain data buffer.
This commit is contained in:
committed by
Gagan Goel
parent
7d5275e1bd
commit
d62b66ecf7
@ -1591,6 +1591,7 @@ RowGroup& RowGroup::operator+=(const RowGroup& rhs)
|
||||
}
|
||||
|
||||
hasLongStringField = rhs.hasLongStringField || hasLongStringField;
|
||||
useStringTable = rhs.useStringTable || useStringTable;
|
||||
offsets = (useStringTable ? &stOffsets[0] : &oldOffsets[0]);
|
||||
|
||||
return *this;
|
||||
|
Reference in New Issue
Block a user