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
feat(cbo,rules,QA): clean SC iface usage in various places
This commit is contained in:
@@ -1018,9 +1018,10 @@ execplan::SCSEP CalpontSelectExecutionPlan::cloneForTableWORecursiveSelects(
|
||||
for (const auto& rc : fReturnedCols)
|
||||
{
|
||||
rc->setSimpleColumnList();
|
||||
for (auto* sc : rc->simpleColumnList())
|
||||
for (auto* simpleColumn : rc->simpleColumnList())
|
||||
{
|
||||
if (targetTableAlias.weakerEq(*sc->singleTable()))
|
||||
auto tableAlias = simpleColumn->singleTable();
|
||||
if (tableAlias && targetTableAlias.weakerEq(*tableAlias))
|
||||
{
|
||||
newReturnedCols.push_back(SRCP(rc->clone()));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user