You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@phoenix.apache.org by st...@apache.org on 2021/03/19 16:35:16 UTC

[phoenix] 01/02: PHOENIX-6419 Unused getResolverForQuery() in QueryCompiler.verifySCN()

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

commit ff590a9781bb589fa74acbe1e04978a50e23051e
Author: Istvan Toth <st...@apache.org>
AuthorDate: Fri Mar 19 09:59:42 2021 +0100

    PHOENIX-6419 Unused getResolverForQuery() in QueryCompiler.verifySCN()
---
 .../src/main/java/org/apache/phoenix/compile/QueryCompiler.java         | 2 --
 1 file changed, 2 deletions(-)

diff --git a/phoenix-core/src/main/java/org/apache/phoenix/compile/QueryCompiler.java b/phoenix-core/src/main/java/org/apache/phoenix/compile/QueryCompiler.java
index 2338367..67edb6d 100644
--- a/phoenix-core/src/main/java/org/apache/phoenix/compile/QueryCompiler.java
+++ b/phoenix-core/src/main/java/org/apache/phoenix/compile/QueryCompiler.java
@@ -194,8 +194,6 @@ public class QueryCompiler {
         if (scn == null) {
             return;
         }
-        ColumnResolver resolver =
-            FromCompiler.getResolverForQuery(select, conn);
         long maxLookBackAgeInMillis =
             CompatBaseScannerRegionObserver.getMaxLookbackInMillis(conn.getQueryServices().
             getConfiguration());