Skip to content

Commit

Permalink
update to 0.9.53
Browse files Browse the repository at this point in the history
  • Loading branch information
bersler committed Nov 16, 2022
1 parent c0753c6 commit 4086ddc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion src/builder/Builder.h
Original file line number Diff line number Diff line change
Expand Up @@ -548,8 +548,11 @@ namespace OpenLogReplicator {
}
LobData *lobData = lobsIt->second;
totalLobLength = pageCnt * lobData->pageSize + sizeRest;
uint64_t jMax = pageCnt;
if (sizeRest > 0)
++jMax;

for (uint64_t j = 0; j < pageCnt + 1; ++j) {
for (uint64_t j = 0; j < jMax; ++j) {
typeDba page = 0;

if (dataOffset < length) {
Expand Down
2 changes: 1 addition & 1 deletion src/parser/Parser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -984,7 +984,7 @@ namespace OpenLogReplicator {
if (redoLogRecord1->bdba != redoLogRecord2->bdba && redoLogRecord1->bdba != 0 && redoLogRecord2->bdba != 0)
throw RedoLogException("BDBA does not match (" + std::to_string(redoLogRecord1->bdba) + ", " +
std::to_string(redoLogRecord2->bdba) + ")");
OracleLob* lob = metadata->schema->checkLobIndexDict(obj);
OracleLob* lob = metadata->schema->checkLobIndexDict(dataObj);
if (lob == nullptr) {
transaction->log(ctx, "idx1", redoLogRecord1);
transaction->log(ctx, "idx2", redoLogRecord2);
Expand Down

0 comments on commit 4086ddc

Please sign in to comment.