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

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


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

commit fb2a14f9b8173eed62a30ed6e703c2d60661cd62
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 2069c6705e..d164b04c8c 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
@@ -114,7 +114,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