ChinmaySKulkarni commented on a change in pull request #935: URL: https://github.com/apache/phoenix/pull/935#discussion_r525578347
########## File path: phoenix-core/src/it/java/org/apache/phoenix/end2end/AlterTableWithViewsIT.java ########## @@ -1216,5 +1216,251 @@ public void testDroppingIndexedColDropsViewIndex() throws Exception { assertNull(results.next()); } } - + + @Test + public void testAddThenDropColumnTableDDLTimestamp() throws Exception { + Properties props = new Properties(); + String schemaName = SCHEMA1; + String dataTableName = "T_" + generateUniqueName(); + String viewName = "V_" + generateUniqueName(); + String dataTableFullName = SchemaUtil.getTableName(schemaName, dataTableName); + String viewFullName = SchemaUtil.getTableName(schemaName, viewName); + + String tableDDL = generateDDL("CREATE TABLE IF NOT EXISTS " + dataTableFullName + " (" + + " %s ID char(1) NOT NULL," + + " COL1 integer NOT NULL," + + " COL2 bigint NOT NULL," + + " CONSTRAINT NAME_PK PRIMARY KEY (%s ID, COL1, COL2)" + + " ) %s"); + + String viewDDL = "CREATE VIEW " + viewFullName + " AS SELECT * FROM " + dataTableFullName; + + String columnAddDDL = "ALTER VIEW " + viewFullName + " ADD COL3 varchar(50) NULL "; + String columnDropDDL = "ALTER VIEW " + viewFullName + " DROP COLUMN COL3 "; + long startTS = EnvironmentEdgeManager.currentTimeMillis(); + try (Connection conn = DriverManager.getConnection(getUrl(), props)) { + conn.createStatement().execute(tableDDL); + //first get the original DDL timestamp when we created the table + long tableDDLTimestamp = CreateTableIT.verifyLastDDLTimestamp( + dataTableFullName, startTS, + conn); + Thread.sleep(1); + conn.createStatement().execute(viewDDL); + tableDDLTimestamp = CreateTableIT.verifyLastDDLTimestamp( + viewFullName, tableDDLTimestamp + 1, conn); + Thread.sleep(1); + //now add a column and make sure the timestamp updates + conn.createStatement().execute(columnAddDDL); + tableDDLTimestamp = CreateTableIT.verifyLastDDLTimestamp( + viewFullName, + tableDDLTimestamp + 1, conn); + Thread.sleep(1); + conn.createStatement().execute(columnDropDDL); + CreateTableIT.verifyLastDDLTimestamp( + viewFullName, + tableDDLTimestamp + 1 , conn); + } + } + + @Test + public void testLastDDLTimestampForDivergedViews() throws Exception { + //Phoenix allows users to "drop" columns from views that are inherited from their ancestor + // views or tables. These columns are then excluded from the view schema, and the view is + // considered "diverged" from its parents, and so no longer inherit any additional schema + // changes that are applied to their ancestors. This test make sure that this behavior + // extends to DDL timestamp + String schemaName = SCHEMA1; + String dataTableName = "T_" + generateUniqueName(); + String viewName = "V_" + generateUniqueName(); + String dataTableFullName = SchemaUtil.getTableName(schemaName, dataTableName); + String viewFullName = SchemaUtil.getTableName(schemaName, viewName); + + String tableDDL = generateDDL("CREATE TABLE IF NOT EXISTS " + dataTableFullName + " (" + + " %s ID char(1) NOT NULL," + + " COL1 integer NOT NULL," + + " COL2 bigint," + + " CONSTRAINT NAME_PK PRIMARY KEY (%s ID, COL1)" + + " ) %s"); + + String viewDDL = "CREATE VIEW " + viewFullName + " AS SELECT * FROM " + dataTableFullName; + + String divergeDDL = "ALTER VIEW " + viewFullName + " DROP COLUMN COL2"; + String viewColumnAddDDL = "ALTER VIEW " + viewFullName + " ADD COL3 varchar(50) NULL "; + String viewColumnDropDDL = "ALTER VIEW " + viewFullName + " DROP COLUMN COL3 "; Review comment: If the column is added to the base table after its child view diverges, they view won't inherit it anyways, so dropping the same column from the parent shouldn't change the lastDDLTs of the view either. On the contrary, if an existing column is dropped, that should change the ts of the view. In fact this sounds like a good additional test to add. ---------------------------------------------------------------- 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: us...@infra.apache.org