gjacoby126 commented on a change in pull request #935: URL: https://github.com/apache/phoenix/pull/935#discussion_r527049509
########## File path: phoenix-core/src/it/java/org/apache/phoenix/end2end/ViewIT.java ########## @@ -387,6 +388,48 @@ public void testViewUsesTableLocalIndex() throws Exception { } } + @Test + public void testCreateViewTimestamp() throws Exception { + String tenantId = null; + createViewTimestampHelper(tenantId); + } + + @Test + public void testCreateTenantViewTimestamp() throws Exception { + createViewTimestampHelper(TENANT1); + } + + private void createViewTimestampHelper(String tenantId) throws SQLException { + Properties props = new Properties(); + if (tenantId != null) { + props.setProperty(PhoenixRuntime.TENANT_ID_ATTRIB, tenantId); + } else { + tenantId = ""; Review comment: Done. ---------------------------------------------------------------- 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