palashc commented on code in PR #1883:
URL: https://github.com/apache/phoenix/pull/1883#discussion_r1638841079
##########
phoenix-core-client/src/main/java/org/apache/phoenix/compile/FromCompiler.java:
##########
@@ -280,7 +281,8 @@ public static ColumnResolver getResolver(NamedTableNode
tableNode, PhoenixConnec
public static ColumnResolver getResolver(SingleTableStatement statement,
PhoenixConnection connection)
throws SQLException {
- SingleTableColumnResolver visitor = new
SingleTableColumnResolver(connection, statement.getTable(), true);
+ SingleTableColumnResolver visitor
+ = new SingleTableColumnResolver(connection,
statement.getTable(), true, true);
Review Comment:
@tkhurana This resolver is also used in several DDL paths.
We create resolvers for query/mutations in `getResolverForQuery` and
`getResolverForMutation` and that is where we set it to false.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]