ranganathg commented on code in PR #1737:
URL: https://github.com/apache/phoenix/pull/1737#discussion_r1396791863


##########
phoenix-core/src/it/java/org/apache/phoenix/end2end/IndexBuildTimestampIT.java:
##########
@@ -249,7 +249,8 @@ public void testCellTimestamp() throws Exception {
             String selectSql = String.format("SELECT * FROM %s WHERE val = 
'abc'", (view ? viewName : dataTableName));
             conn = DriverManager.getConnection(getUrl());
             // assert we are pulling from index table
-            assertExplainPlan(conn, localIndex, selectSql, dataTableName, 
(view ? "_IDX_" + dataTableName : indexName));
+            assertExplainPlan(conn, localIndex, selectSql, dataTableName, 
(view && !localIndex ?
+                    "_IDX_" + dataTableName : indexName));

Review Comment:
   this doesn't have the indexName(dataTableName) format?



-- 
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]

Reply via email to