jinggou commented on code in PR #1737:
URL: https://github.com/apache/phoenix/pull/1737#discussion_r1399811479
##########
phoenix-core/src/it/java/org/apache/phoenix/end2end/index/GlobalIndexOptimizationIT.java:
##########
@@ -79,7 +79,8 @@ public void testIndexDeleteOptimizationWithLocalIndex()
throws Exception {
ResultSet rs = conn1.createStatement().executeQuery("EXPLAIN "+
query);
String expected =
"DELETE ROWS CLIENT SELECT\n" +
- "CLIENT PARALLEL 1-WAY RANGE SCAN OVER " + dataTableName
+" [1,*] - [1,100]\n" +
+ "CLIENT PARALLEL 1-WAY RANGE SCAN OVER " +
+ indexTableName+"L" + "(" + dataTableName + ")
[1,*] - [1,100]\n" +
Review Comment:
Because a local index named indexTableName+"L" is created above
(Line 69: `createIndex(indexTableName+"L", dataTableName, "k3", null,
true);`)
--
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]