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-5021 Some minor fixes.
This commit is contained in:
@ -146,7 +146,15 @@ DropTableProcessor::DDLResult DropTableProcessor::processPackage(
|
||||
try
|
||||
{
|
||||
roPair = systemCatalogPtr->tableRID(tableName);
|
||||
tableAUXColOid = systemCatalogPtr->tableAUXColumnOID(tableName);
|
||||
|
||||
if (tableName.schema.compare(execplan::CALPONT_SCHEMA) == 0)
|
||||
{
|
||||
tableAUXColOid = 0;
|
||||
}
|
||||
else
|
||||
{
|
||||
tableAUXColOid = systemCatalogPtr->tableAUXColumnOID(tableName);
|
||||
}
|
||||
}
|
||||
catch (IDBExcept& ie)
|
||||
{
|
||||
|
Reference in New Issue
Block a user