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
chore(server_support): fixes to build columnstore branch with server >= 11.5
This commit is contained in:
committed by
Leonid Fedorov
parent
1c8984fbf6
commit
0359a1fd3a
@ -328,7 +328,12 @@ static execplan::Partitions getPartitions(TABLE* table)
|
||||
|
||||
while ((pe = part_el_it++)) // this is how server does it.
|
||||
{
|
||||
result.fPartNames.emplace_back(pe->partition_name);
|
||||
// TODO: partition names are not just strings in
|
||||
#if MYSQL_VERSION_ID >= 110501
|
||||
result.fPartNames.emplace_back(pe->partition_name.str);
|
||||
#else
|
||||
result.fPartNames.emplace_back(pe->partition_name);
|
||||
#endif
|
||||
}
|
||||
}
|
||||
return result;
|
||||
|
Reference in New Issue
Block a user