1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-30 19:23:07 +03:00

MCOL-3757 Correct overwrite of MCOL-3903

This line for MCOL-3757 is incorrect given MCOL-3903 and it breaks things
This commit is contained in:
David Hall
2020-04-22 15:02:47 -05:00
parent f3a71199b8
commit c957048a51

View File

@ -7853,8 +7853,7 @@ int getSelectPlan(gp_walk_info& gwi, SELECT_LEX& select_lex,
} }
// We don't currently support limit with correlated subquery // We don't currently support limit with correlated subquery
if (csep->limitNum() != (uint64_t) - 1 && if ((rc = processLimitAndOffset(select_lex, gwi, csep, unionSel, isUnion, isSelectHandlerTop)))
gwi.subQuery && !gwi.correlatedTbNameVec.empty())
{ {
return rc; return rc;
} }