File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -12292,7 +12292,7 @@ bool RestoreRelationTask::fileReader(Item& item)
12292
12292
12293
12293
BURP_verbose(124, m_relation->rel_name); // msg 124 restoring data for relation %s
12294
12294
12295
- const ULONG length = m_metadata.m_inMsgLen; // full record length
12295
+ const RCRD_LENGTH length = m_metadata.m_inMsgLen; // full record length
12296
12296
12297
12297
IOBuffer* ioBuf = NULL;
12298
12298
FB_SSIZE_T space = 0; // space left in current buffer
@@ -12310,7 +12310,7 @@ bool RestoreRelationTask::fileReader(Item& item)
12310
12310
if (get(tdgbl) != att_data_length)
12311
12311
BURP_error_redirect(NULL, 39); // msg 39 expected record length
12312
12312
12313
- USHORT len = (USHORT) get_int32(tdgbl);
12313
+ RCRD_LENGTH len = get_int32(tdgbl);
12314
12314
12315
12315
if (!tdgbl->gbl_sw_transportable && len != length)
12316
12316
{
@@ -12324,7 +12324,7 @@ bool RestoreRelationTask::fileReader(Item& item)
12324
12324
BURP_error_redirect(NULL, 55);
12325
12325
// msg 55 Expected XDR record length
12326
12326
else
12327
- len = (USHORT) get_int32(tdgbl);
12327
+ len = get_int32(tdgbl);
12328
12328
}
12329
12329
12330
12330
if (get(tdgbl) != att_data_data)
Original file line number Diff line number Diff line change @@ -3807,7 +3807,7 @@ static void store_big_record(thread_db* tdbb,
3807
3807
// What's left fits on a page. Store it somewhere.
3808
3808
3809
3809
const auto inLength = in - rpb->rpb_address;
3810
- fb_assert(Compressor(tdbb, inLength, rpb->rpb_address).getPackedLength() == size);
3810
+ // fb_assert(Compressor(tdbb, inLength, rpb->rpb_address).getPackedLength() == size);
3811
3811
3812
3812
stack.push(prior);
3813
3813
You can’t perform that action at this time.
0 commit comments