|
1 | 1 | mod delete_by_key; |
2 | | -mod exec_statement2; |
| 2 | +mod exec_statement; |
3 | 3 | mod filter; |
4 | 4 | mod find_pk_by_index; |
5 | 5 | mod get_by_key; |
@@ -57,15 +57,15 @@ impl Exec<'_> { |
57 | 57 | async fn exec_step(&mut self, action: &Action) -> Result<()> { |
58 | 58 | match action { |
59 | 59 | Action::DeleteByKey(action) => self.action_delete_by_key(action).await, |
60 | | - Action::ExecStatement2(action) => self.action_exec_statement2(action).await, |
| 60 | + Action::ExecStatement(action) => self.action_exec_statement(action).await, |
61 | 61 | Action::Filter(action) => self.action_filter(action).await, |
62 | | - Action::FindPkByIndex2(action) => self.action_find_pk_by_index2(action).await, |
63 | | - Action::GetByKey2(action) => self.action_get_by_key2(action).await, |
| 62 | + Action::FindPkByIndex(action) => self.action_find_pk_by_index(action).await, |
| 63 | + Action::GetByKey(action) => self.action_get_by_key(action).await, |
64 | 64 | Action::NestedMerge(action) => self.action_nested_merge(action).await, |
65 | | - Action::QueryPk2(action) => self.action_query_pk2(action).await, |
66 | | - Action::ReadModifyWrite2(action) => self.action_read_modify_write2(action).await, |
| 65 | + Action::QueryPk(action) => self.action_query_pk(action).await, |
| 66 | + Action::ReadModifyWrite(action) => self.action_read_modify_write(action).await, |
67 | 67 | Action::Project(action) => self.action_project(action).await, |
68 | | - Action::SetVar2(action) => self.action_set_var2(action), |
| 68 | + Action::SetVar(action) => self.action_set_var(action), |
69 | 69 | Action::UpdateByKey(action) => self.action_update_by_key(action).await, |
70 | 70 | } |
71 | 71 | } |
|
0 commit comments