Skip to content

Commit b4d7d0c

Browse files
dmitry-starodubovdyemanov
authored andcommitted
Use a 64bit counter for the records written during the backup (#8319)
1 parent 70a60ba commit b4d7d0c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/burp/BurpTasks.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -565,9 +565,9 @@ bool BackupRelationTask::fileWriter(Item& item)
565565
// msg 142 writing data for relation %s
566566

567567
IOBuffer*& buf = item.m_buffer = NULL;
568-
FB_SIZE_T records = 0;
569-
FB_SIZE_T verbRecs = -1;
570-
FB_SIZE_T verb = 0;
568+
FB_UINT64 records = 0;
569+
FB_UINT64 verbRecs = -1;
570+
FB_UINT64 verb = 0;
571571
while (!m_stop)
572572
{
573573
if (!buf)

0 commit comments

Comments
 (0)