| 1028 | } |
| 1029 | |
| 1030 | void table_storage::insert_slots(Oid table_id, int32_t nslots, TupleTableSlot** slots) |
| 1031 | { |
| 1032 | auto& table_data = get_table_data(table_id); |
| 1033 | table_data.add_insert_slots(nslots, slots); |
| 1034 | } |
| 1035 | |
| 1036 | bool table_storage::delete_tuple(Oid table_id, ItemPointer tid) |
| 1037 | { |
no test coverage detected