mchades commented on code in PR #4991:
URL: https://github.com/apache/gravitino/pull/4991#discussion_r1779878297


##########
catalogs/catalog-jdbc-common/src/main/java/org/apache/gravitino/catalog/jdbc/operation/JdbcTableOperations.java:
##########
@@ -204,6 +205,10 @@ public JdbcTable load(String databaseName, String 
tableName) throws NoSuchTableE
       Transform[] tablePartitioning = getTablePartitioning(connection, 
databaseName, tableName);
       jdbcTableBuilder.withPartitioning(tablePartitioning);
 
+      // 5.Get distribution information
+      Distribution distribution = getDistributionInfo(connection, 
databaseName, tableName);
+      jdbcTableBuilder.withDistribution(distribution);
+
       // 5.Get table properties

Review Comment:
   this should be `6.xxx` ?



-- 
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...@gravitino.apache.org

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

Reply via email to