Github user ankitsinghal commented on a diff in the pull request:

    https://github.com/apache/phoenix/pull/210#discussion_r91454865
  
    --- Diff: 
phoenix-core/src/it/java/org/apache/phoenix/end2end/index/IndexMetadataIT.java 
---
    @@ -216,6 +219,15 @@ public void testIndexCreateDrop() throws Exception {
                 assertFalse(rs.next());
                 
                 assertActiveIndex(conn, INDEX_DATA_SCHEMA, indexDataTable);
    +            
    +            ddl = "ALTER INDEX " + indexName + " ON " + INDEX_DATA_SCHEMA 
+ QueryConstants.NAME_SEPARATOR + indexDataTable + " REBUILD ASYNC";
    +            conn.createStatement().execute(ddl);
    +            // Verify the metadata for index is correct.
    +            rs = conn.getMetaData().getTables(null, 
StringUtil.escapeLike(INDEX_DATA_SCHEMA), indexName , new String[] 
{PTableType.INDEX.toString()});
    +            assertTrue(rs.next());
    +            assertEquals(indexName , rs.getString(3));
    +            assertEquals(PIndexState.BUILDING.toString(), 
rs.getString("INDEX_STATE"));
    --- End diff --
    
    This was taken care in the last commit.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to