You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-10-31 18:30:33 +03:00
Merge branch 'stable-23.10' into feat/MCOL-6072-parallel-scan-4-CES-4
This commit is contained in:
@@ -62,12 +62,25 @@ static int is_columnstore_columns_fill(THD* thd, TABLE_LIST* tables, COND* cond)
|
||||
InformationSchemaCond isCond;
|
||||
|
||||
execplan::CalpontSystemCatalog csc;
|
||||
const std::vector<
|
||||
std::pair<execplan::CalpontSystemCatalog::OID, execplan::CalpontSystemCatalog::TableName> >
|
||||
catalog_tables = csc.getTables();
|
||||
|
||||
// Use FE path for syscat queries issued from mysqld
|
||||
csc.identity(execplan::CalpontSystemCatalog::FE);
|
||||
|
||||
std::vector<
|
||||
std::pair<execplan::CalpontSystemCatalog::OID, execplan::CalpontSystemCatalog::TableName> >
|
||||
catalog_tables;
|
||||
try
|
||||
{
|
||||
catalog_tables = csc.getTables("", lower_case_table_names);
|
||||
}
|
||||
catch (IDBExcept&)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
catch (std::exception&)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
if (cond)
|
||||
{
|
||||
isCond.getCondItems(cond);
|
||||
|
||||
Reference in New Issue
Block a user