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 87b9558 commit d58da1dCopy full SHA for d58da1d
src/meta/api/src/schema_api_impl.rs
@@ -2145,8 +2145,8 @@ async fn remove_table_copied_files(
2145
let (lock_key_seq, lock_op): (_, Option<TableCopiedFileLock>) =
2146
get_struct_value(kv_api, &lock_key).await?;
2147
2148
+ condition.push(txn_cond_seq(&lock_key, Eq, lock_key_seq));
2149
if let Some(lock) = lock_op {
- condition.push(txn_cond_seq(&lock_key, Eq, lock_key_seq));
2150
if_then.push(txn_op_put(&lock_key, serialize_struct(&lock)?)); // copied file lock key
2151
2152
// List files by tenant, db_name, table_name
0 commit comments