File changes and tuple changes in test

pg16_kickoff
onderkalaci 2023-04-26 22:35:19 +03:00
parent d2d7c73863
commit 9085beb819
1 changed files with 4 additions and 4 deletions

View File

@ -269,7 +269,7 @@ fake_tuple_update(Relation relation, ItemPointer otid,
TupleTableSlot *slot, CommandId cid,
Snapshot snapshot, Snapshot crosscheck,
bool wait, TM_FailureData *tmfd,
LockTupleMode *lockmode, bool *update_indexes)
LockTupleMode *lockmode, TU_UpdateIndexes *update_indexes)
{
elog(ERROR, "fake_tuple_update not implemented");
}
@ -298,7 +298,7 @@ fake_finish_bulk_insert(Relation relation, int options)
*/
static void
fake_relation_set_new_filenode(Relation rel,
const RelFileNode *newrnode,
const RelFileLocator *newrnode,
char persistence,
TransactionId *freezeXid,
MultiXactId *minmulti)
@ -359,7 +359,7 @@ fake_relation_nontransactional_truncate(Relation rel)
static void
fake_copy_data(Relation rel, const RelFileNode *newrnode)
fake_copy_data(Relation rel, const RelFileLocator *newrnode)
{
elog(ERROR, "fake_copy_data not implemented");
}
@ -574,7 +574,7 @@ static const TableAmRoutine fake_methods = {
.compute_xid_horizon_for_tuples = fake_compute_xid_horizon_for_tuples,
#endif
.relation_set_new_filenode = fake_relation_set_new_filenode,
.relation_set_new_filelocator = fake_relation_set_new_filenode,
.relation_nontransactional_truncate = fake_relation_nontransactional_truncate,
.relation_copy_data = fake_copy_data,
.relation_copy_for_cluster = fake_copy_for_cluster,