We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b463c1 commit 5e8e0b0Copy full SHA for 5e8e0b0
crates/iceberg/src/transaction.rs
@@ -962,22 +962,6 @@ mod tests {
962
assert_eq!(data_file, *manifest.entries()[0].data_file());
963
}
964
965
- #[test]
966
- fn test_do_same_update_in_same_transaction() {
967
- let table = make_v2_table();
968
- let tx = Transaction::new(&table);
969
- let tx = tx
970
- .remove_properties(vec!["a".to_string(), "b".to_string()])
971
- .unwrap();
972
-
973
- let tx = tx.remove_properties(vec!["c".to_string(), "d".to_string()]);
974
975
- assert!(
976
- tx.is_err(),
977
- "Should not allow to do same kinds update in same transaction"
978
- );
979
- }
980
981
#[tokio::test]
982
async fn test_add_existing_parquet_files_to_unpartitioned_table() {
983
let mut fixture = TableTestFixture::new_unpartitioned();
0 commit comments