-
Notifications
You must be signed in to change notification settings - Fork 137
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
22 changed files
with
481 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
0.9.47 | ||
- small fixes | ||
- fixed old checkpoints deletion | ||
|
||
0.9.46 | ||
- small thread fixes | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,7 +29,7 @@ | |
], | ||
"target": [ | ||
{ | ||
"alias": "K1", | ||
"alias": "K1", | ||
"source": "S1", | ||
"writer": { | ||
"type": "kafka", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
/* Definition of schema SYS.LOB$ | ||
Copyright (C) 2018-2022 Adam Leszczynski ([email protected]) | ||
This file is part of OpenLogReplicator. | ||
OpenLogReplicator is free software; you can redistribute it and/or | ||
modify it under the terms of the GNU General Public License as published | ||
by the Free Software Foundation; either version 3, or (at your option) | ||
any later version. | ||
OpenLogReplicator is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General | ||
Public License for more details. | ||
You should have received a copy of the GNU General Public License | ||
along with OpenLogReplicator; see the file LICENSE; If not see | ||
<http://www.gnu.org/licenses/>. */ | ||
|
||
#include "SysLob.h" | ||
|
||
namespace OpenLogReplicator { | ||
SysLobKey::SysLobKey(typeObj newObj, typeCol newIntCol) : | ||
obj(newObj), | ||
intCol(newIntCol) { | ||
} | ||
|
||
bool SysLobKey::operator<(const SysLobKey& other) const { | ||
if (other.obj > obj) | ||
return true; | ||
if (other.obj == obj && other.intCol > intCol) | ||
return true; | ||
return false; | ||
} | ||
|
||
SysLob::SysLob(typeRowId& newRowId, typeObj newObj, typeCol newCol, typeCol newIntCol, typeObj newLObj, bool newTouched) : | ||
rowId(newRowId), | ||
obj(newObj), | ||
col(newCol), | ||
intCol(newIntCol), | ||
lObj(newLObj), | ||
touched(newTouched) { | ||
} | ||
|
||
bool SysLob::operator!=(const SysLob& other) const { | ||
return other.rowId != rowId || other.obj != obj || other.col != col || other.intCol != intCol || other.lObj != lObj; | ||
} | ||
} |
Oops, something went wrong.