ChinmaySKulkarni commented on a change in pull request #935:
URL: https://github.com/apache/phoenix/pull/935#discussion_r520188127



##########
File path: 
phoenix-core/src/main/java/org/apache/phoenix/coprocessor/MetaDataEndpointImpl.java
##########
@@ -2037,7 +2049,10 @@ public void createTable(RpcController controller, 
CreateTableRequest request,
                     // view's property in case they are different from the 
parent
                     
ViewUtil.addTagsToPutsForViewAlteredProperties(tableMetadata, parentTable);
                 }
-
+                //set the last DDL timestamp to the current server time since 
we're creating the
+                // table
+                
tableMetadata.add(MetaDataUtil.getLastDDLTimestampUpdate(tableKey,
+                    clientTimeStamp, 
EnvironmentEdgeManager.currentTimeMillis()));

Review comment:
       Do we want to restrict this to just tables and views i.e. 'u' and 'v' 
table_types? The upgrade code only adds a ts for existing tables and views, but 
not indexes and SYSTEM tables, but here we do it for all types. There will be 
inconsistency in that case between an index created before the 4.16 metadata 
upgrade (no ts) vs an index created after the 4.16 metadata upgrade (has ts), 
not to mention fresh clusters will have a ts for all entities.




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


Reply via email to