leekeiabstraction commented on code in PR #229:
URL: https://github.com/apache/fluss-rust/pull/229#discussion_r2749224656


##########
crates/fluss/src/client/metadata.rs:
##########
@@ -142,6 +142,27 @@ impl Metadata {
             .await
     }
 
+    pub async fn update_physical_table_metadata(
+        &self,
+        physical_table_paths: &[Arc<PhysicalTablePath>],
+    ) -> Result<()> {
+        let mut update_table_paths = HashSet::new();
+        let mut update_partition_paths = HashSet::new();
+        for physical_table_path in physical_table_paths {
+            match physical_table_path.get_partition_name() {
+                None => {
+                    update_partition_paths.insert(physical_table_path);
+                }
+                Some(_) => {
+                    
update_table_paths.insert(physical_table_path.get_table_path());

Review Comment:
   +1



-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to