Re: [PR] refine: refine interface of ManifestWriter [iceberg-rust]

2025-01-18 Thread via GitHub
Xuanwo merged PR #738: URL: https://github.com/apache/iceberg-rust/pull/738 -- 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: issues-unsubscr...@iceberg.a

Re: [PR] refine: refine interface of ManifestWriter [iceberg-rust]

2025-01-17 Thread via GitHub
liurenjie1024 commented on PR #738: URL: https://github.com/apache/iceberg-rust/pull/738#issuecomment-2599575267 Let's wait for a moment to see if @Xuanwo has other comments. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and

Re: [PR] refine: refine interface of ManifestWriter [iceberg-rust]

2025-01-17 Thread via GitHub
Xuanwo commented on code in PR #738: URL: https://github.com/apache/iceberg-rust/pull/738#discussion_r1920298893 ## crates/iceberg/src/spec/manifest.rs: ## @@ -210,38 +284,207 @@ impl ManifestWriter { deleted_rows: 0, min_seq_num: None, key

Re: [PR] refine: refine interface of ManifestWriter [iceberg-rust]

2025-01-17 Thread via GitHub
liurenjie1024 commented on code in PR #738: URL: https://github.com/apache/iceberg-rust/pull/738#discussion_r1920149166 ## crates/iceberg/src/spec/manifest.rs: ## @@ -210,38 +284,207 @@ impl ManifestWriter { deleted_rows: 0, min_seq_num: None,

Re: [PR] refine: refine interface of ManifestWriter [iceberg-rust]

2025-01-16 Thread via GitHub
liurenjie1024 commented on code in PR #738: URL: https://github.com/apache/iceberg-rust/pull/738#discussion_r1919610030 ## crates/iceberg/src/spec/manifest.rs: ## @@ -114,6 +114,70 @@ impl Manifest { } } +/// The builder used to create a [`ManifestWriter`]. +pub struct M

Re: [PR] refine: refine interface of ManifestWriter [iceberg-rust]

2025-01-16 Thread via GitHub
ZENOTME commented on code in PR #738: URL: https://github.com/apache/iceberg-rust/pull/738#discussion_r1918244280 ## crates/iceberg/src/spec/manifest.rs: ## @@ -114,6 +114,70 @@ impl Manifest { } } +/// The builder used to create a [`ManifestWriter`]. +pub struct Manifes

Re: [PR] refine: refine interface of ManifestWriter [iceberg-rust]

2025-01-16 Thread via GitHub
ZENOTME commented on code in PR #738: URL: https://github.com/apache/iceberg-rust/pull/738#discussion_r1918221289 ## crates/iceberg/src/spec/manifest.rs: ## @@ -210,38 +281,141 @@ impl ManifestWriter { deleted_rows: 0, min_seq_num: None, ke

Re: [PR] refine: refine interface of ManifestWriter [iceberg-rust]

2025-01-16 Thread via GitHub
ZENOTME commented on PR #738: URL: https://github.com/apache/iceberg-rust/pull/738#issuecomment-2595160984 > Thanks @ZENOTME for this pr, generally LGTM! I still have concerns with the add/eixsting/delete api, and prefer the approach used in java api: org.apache.iceberg.ManifestWriter#add(F

Re: [PR] refine: refine interface of ManifestWriter [iceberg-rust]

2025-01-16 Thread via GitHub
liurenjie1024 commented on code in PR #738: URL: https://github.com/apache/iceberg-rust/pull/738#discussion_r1918218581 ## crates/iceberg/src/spec/manifest.rs: ## @@ -210,38 +281,141 @@ impl ManifestWriter { deleted_rows: 0, min_seq_num: None,

Re: [PR] refine: refine interface of ManifestWriter [iceberg-rust]

2025-01-16 Thread via GitHub
ZENOTME commented on code in PR #738: URL: https://github.com/apache/iceberg-rust/pull/738#discussion_r1918213790 ## crates/iceberg/src/spec/manifest.rs: ## @@ -210,38 +281,141 @@ impl ManifestWriter { deleted_rows: 0, min_seq_num: None, ke

Re: [PR] refine: refine interface of ManifestWriter [iceberg-rust]

2025-01-16 Thread via GitHub
liurenjie1024 commented on code in PR #738: URL: https://github.com/apache/iceberg-rust/pull/738#discussion_r1918041864 ## crates/iceberg/src/spec/manifest.rs: ## @@ -210,38 +281,141 @@ impl ManifestWriter { deleted_rows: 0, min_seq_num: None,

Re: [PR] refine: refine interface of ManifestWriter [iceberg-rust]

2024-12-19 Thread via GitHub
liurenjie1024 commented on code in PR #738: URL: https://github.com/apache/iceberg-rust/pull/738#discussion_r1891310066 ## crates/iceberg/src/spec/manifest.rs: ## @@ -203,12 +206,95 @@ impl ManifestWriter { partition_summary } -/// Write a manifest. -pub

Re: [PR] refine: refine interface of ManifestWriter [iceberg-rust]

2024-12-18 Thread via GitHub
ZENOTME commented on code in PR #738: URL: https://github.com/apache/iceberg-rust/pull/738#discussion_r1891257771 ## crates/iceberg/src/spec/manifest.rs: ## @@ -203,12 +206,95 @@ impl ManifestWriter { partition_summary } -/// Write a manifest. -pub async

Re: [PR] refine: refine interface of ManifestWriter [iceberg-rust]

2024-12-18 Thread via GitHub
liurenjie1024 commented on code in PR #738: URL: https://github.com/apache/iceberg-rust/pull/738#discussion_r1891236836 ## crates/iceberg/src/spec/manifest.rs: ## @@ -203,12 +206,95 @@ impl ManifestWriter { partition_summary } -/// Write a manifest. -pub

Re: [PR] refine: refine interface of ManifestWriter [iceberg-rust]

2024-12-06 Thread via GitHub
ZENOTME commented on code in PR #738: URL: https://github.com/apache/iceberg-rust/pull/738#discussion_r1873384095 ## crates/iceberg/src/spec/manifest.rs: ## @@ -203,12 +206,80 @@ impl ManifestWriter { partition_summary } -/// Write a manifest. -pub async

Re: [PR] refine: refine interface of ManifestWriter [iceberg-rust]

2024-12-05 Thread via GitHub
liurenjie1024 commented on code in PR #738: URL: https://github.com/apache/iceberg-rust/pull/738#discussion_r1872484518 ## crates/iceberg/src/spec/manifest.rs: ## @@ -203,12 +206,80 @@ impl ManifestWriter { partition_summary } -/// Write a manifest. -pub

Re: [PR] refine: refine interface of ManifestWriter [iceberg-rust]

2024-12-03 Thread via GitHub
ZENOTME commented on code in PR #738: URL: https://github.com/apache/iceberg-rust/pull/738#discussion_r1868871965 ## crates/iceberg/src/spec/manifest.rs: ## @@ -203,12 +206,80 @@ impl ManifestWriter { partition_summary } -/// Write a manifest. -pub async

Re: [PR] refine: refine interface of ManifestWriter [iceberg-rust]

2024-12-03 Thread via GitHub
liurenjie1024 commented on code in PR #738: URL: https://github.com/apache/iceberg-rust/pull/738#discussion_r1868674850 ## crates/iceberg/src/spec/manifest.rs: ## @@ -203,12 +206,80 @@ impl ManifestWriter { partition_summary } -/// Write a manifest. -pub

Re: [PR] refine: refine interface of ManifestWriter [iceberg-rust]

2024-11-28 Thread via GitHub
ZENOTME commented on PR #738: URL: https://github.com/apache/iceberg-rust/pull/738#issuecomment-2506443194 cc @liurenjie1024 @Xuanwo -- 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