1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-29 08:21:15 +03:00

Wrong concatenation in between predicate (#2092)

This commit is contained in:
Leonid Fedorov
2021-08-18 19:32:01 +03:00
committed by GitHub
parent 37e00e56e1
commit 145a7f7217

View File

@ -1211,7 +1211,7 @@ string BetweenPredicate::getPredicateString() const
between_predicate += fRH1ScalarExpression;
between_predicate += " ";
between_predicate += fOperator2;
between_predicate + " ";
between_predicate += " ";
between_predicate += fRH2ScalarExpression;
return between_predicate;