Skip to content

Commit

Permalink
add table_items to deprecated table flag (#424)
Browse files Browse the repository at this point in the history
  • Loading branch information
yuunlimm authored Jun 24, 2024
1 parent d43d423 commit c2a4250
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
3 changes: 3 additions & 0 deletions rust/processor/src/processors/default_processor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -449,6 +449,9 @@ fn process_transactions(
if flags.contains(TableFlags::WRITE_SET_CHANGES) {
write_set_changes.clear();
}
if flags.contains(TableFlags::TABLE_ITEMS) {
table_items.clear();
}

(
txns,
Expand Down
1 change: 1 addition & 0 deletions rust/processor/src/worker.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ bitflags! {
const TRANSACTIONS = 1;
const WRITE_SET_CHANGES = 2;
const MOVE_RESOURCES = 4;
const TABLE_ITEMS = 8;
}
}

Expand Down

0 comments on commit c2a4250

Please sign in to comment.