8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-22 22:43:03 +01:00
This commit is contained in:
robocop 2015-03-13 15:30:23 +00:00
parent 939feab036
commit 746d47f4f2
2 changed files with 2 additions and 2 deletions

View File

@ -339,7 +339,7 @@ void IDX_create_index(thread_db* tdbb,
// Checkout a garbage collect record block for fetching data.
AutoGCRecord gc_record = VIO_gc_record(tdbb, relation);
AutoGCRecord gc_record(VIO_gc_record(tdbb, relation));
// Unless this is the only attachment or a database restore, worry about
// preserving the page working sets of other attachments.

View File

@ -5590,7 +5590,7 @@ static void purge(thread_db* tdbb, record_param* rpb)
record_param temp = *rpb;
jrd_rel* const relation = rpb->rpb_relation;
AutoGCRecord gc_rec = VIO_gc_record(tdbb, relation);
AutoGCRecord gc_rec(VIO_gc_record(tdbb, relation));
Record* record = rpb->rpb_record = gc_rec;
VIO_data(tdbb, rpb, relation->rel_pool);