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
MariaDB 10.5 Compatibility
Several changes have happened in MariaDB 10.5, most notably: * Information Schema table definitions have changed * More things use LEX_CSTRING This fixes all the compile issues
This commit is contained in:
@ -521,7 +521,7 @@ execplan::ReturnedColumn* buildPseudoColumn(Item* item,
|
||||
Item_field* field = (Item_field*)(ifp->arguments()[0]);
|
||||
|
||||
// @todo rule out derive table
|
||||
if (!field->field || !field->db_name || strlen(field->db_name) == 0)
|
||||
if (!field->field || !field->db_name.str || strlen(field->db_name.str) == 0)
|
||||
return nullOnError(gwi, funcName);
|
||||
|
||||
SimpleColumn* sc = buildSimpleColumn(field, gwi);
|
||||
|
Reference in New Issue
Block a user