Skip to content

Commit

Permalink
Use a 64bit counter for the records written during the backup (#8319)
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitry-starodubov authored and dyemanov committed Nov 15, 2024
1 parent 70a60ba commit b4d7d0c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/burp/BurpTasks.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -565,9 +565,9 @@ bool BackupRelationTask::fileWriter(Item& item)
// msg 142 writing data for relation %s

IOBuffer*& buf = item.m_buffer = NULL;
FB_SIZE_T records = 0;
FB_SIZE_T verbRecs = -1;
FB_SIZE_T verb = 0;
FB_UINT64 records = 0;
FB_UINT64 verbRecs = -1;
FB_UINT64 verb = 0;
while (!m_stop)
{
if (!buf)
Expand Down

0 comments on commit b4d7d0c

Please sign in to comment.