This is an automated email from the ASF dual-hosted git repository.

stoty pushed a commit to branch 5.1
in repository https://gitbox.apache.org/repos/asf/phoenix.git


The following commit(s) were added to refs/heads/5.1 by this push:
     new 043fb0cec9 PHOENIX-6880 Remove dynamicFilter from BaseQueryPlan 
(addendum: revert WhereCompiler)
043fb0cec9 is described below

commit 043fb0cec909a7a5c6fbe7726e20b79f5404ec3e
Author: Istvan Toth <st...@apache.org>
AuthorDate: Fri Mar 10 07:26:24 2023 +0100

    PHOENIX-6880 Remove dynamicFilter from BaseQueryPlan (addendum: revert 
WhereCompiler)
---
 .../src/main/java/org/apache/phoenix/compile/WhereCompiler.java         | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/phoenix-core/src/main/java/org/apache/phoenix/compile/WhereCompiler.java 
b/phoenix-core/src/main/java/org/apache/phoenix/compile/WhereCompiler.java
index 89c09ca6ab..1f6ab7ff36 100644
--- a/phoenix-core/src/main/java/org/apache/phoenix/compile/WhereCompiler.java
+++ b/phoenix-core/src/main/java/org/apache/phoenix/compile/WhereCompiler.java
@@ -115,7 +115,7 @@ public class WhereCompiler {
      * @throws AmbiguousColumnException if an unaliased column name is 
ambiguous across multiple tables
      */
     public static Expression compile(StatementContext context, 
FilterableStatement statement, ParseNode viewWhere, Set<SubqueryParseNode> 
subqueryNodes, Optional<byte[]> minOffset) throws SQLException {
-        return compile(context, statement, viewWhere, subqueryNodes, 
minOffset);
+        return compile(context, statement, viewWhere, 
Collections.<Expression>emptyList(), subqueryNodes, minOffset);
     }
 
     /**

Reply via email to