You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-11-02 06:13:16 +03:00
feat(rbo,rules,QA): SC::setSimpleColumn does not have more than 1 SC in its SimpleColumn list.
This commit is contained in:
@@ -749,7 +749,14 @@ void SimpleColumn::evaluate(Row& row, bool& isNull)
|
||||
|
||||
void SimpleColumn::setSimpleColumnList()
|
||||
{
|
||||
fSimpleColumnList.push_back(this);
|
||||
if (fSimpleColumnList.empty())
|
||||
{
|
||||
fSimpleColumnList.push_back(this);
|
||||
}
|
||||
else
|
||||
{
|
||||
fSimpleColumnList.back() = this;
|
||||
}
|
||||
}
|
||||
|
||||
std::optional<CalpontSystemCatalog::TableAliasName> sameTableCheck(std::vector<SimpleColumn*> simpleColumnList)
|
||||
|
||||
Reference in New Issue
Block a user