virajjasani commented on pull request #1135:
URL: https://github.com/apache/phoenix/pull/1135#issuecomment-776002281


   @swaroopak one question (not exactly related to this PR):
   
   From `getIndexesPTableForCascade()`, we have this block:
   ```
                   // a child view has access to its parents indexes,
                   // this if clause ensures we only get the indexes that
                   // are only created on the view itself.
                   if (index.getIndexType().equals(IndexType.LOCAL)
                           || (isView && 
index.getTableName().toString().contains("#"))) {
                       indexesPTable.remove(index);
                   }
   ```
   Having `#` in indexName represents that it is parent index and not view's 
own index? If so, is that the only way to differentiate it as of now or do we 
have some attribute?


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

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to