1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-01 06:46:55 +03:00

MCOL-1234 Nested CASE filters not processed

Change the way buildCaseFunction() handles the ptWorkStack and the rcWorkStack.
This commit is contained in:
David Hall
2018-04-02 17:02:54 -05:00
parent 25661c0851
commit aa581b5dc3
7 changed files with 73 additions and 93 deletions

View File

@ -370,16 +370,16 @@ bool SimpleColumn::operator==(const SimpleColumn& t) const
return false;
if (fColumnName != t.fColumnName)
return false;
if (fIndexName != t.fIndexName)
return false;
// if (fIndexName != t.fIndexName)
// return false;
if (fViewName != t.fViewName)
return false;
if (fOid != t.fOid)
return false;
if (fData != t.fData)
return false;
if (fAlias != t.fAlias)
if (data() != t.data())
return false;
// if (fAlias != t.fAlias)
// return false;
if (fTableAlias != t.fTableAlias)
return false;
if (fAsc != t.fAsc)