abhishekbafna commented on code in PR #15720:
URL: https://github.com/apache/pinot/pull/15720#discussion_r2080914414


##########
pinot-common/src/main/java/org/apache/pinot/common/config/provider/TableCache.java:
##########
@@ -363,14 +366,13 @@ private void putTableConfig(ZNRecord znRecord)
 
   private void putLogicalTableConfig(ZNRecord znRecord)
       throws IOException {
-    LogicalTableConfig logicalTableConfig = 
LogicalTableUtils.fromZNRecord(znRecord);
+    LogicalTableConfig logicalTableConfig = 
LogicalTableConfigUtils.fromZNRecord(znRecord);
     String logicalTableName = logicalTableConfig.getTableName();
+    _logicalTableConfigInfoMap.put(logicalTableName, new 
LogicalTableConfigInfo(logicalTableConfig));

Review Comment:
   The `_logicalTableConfigInfoMap` keep the logical table name as it is but 
`_logicalTableNameMap` store the lowercase to original table name mapping.
   
   This is how is done for table config too.



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

To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org
For additional commands, e-mail: commits-h...@pinot.apache.org

Reply via email to