oss LastDRWAL (#12931)

This commit is contained in:
swayne275 2021-10-26 15:17:20 -06:00 committed by GitHub
parent 7dcae18641
commit 92e6972b86
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -108,6 +108,7 @@ var (
stopReplication = stopReplicationImpl
LastWAL = lastWALImpl
LastPerformanceWAL = lastPerformanceWALImpl
LastDRWAL = lastDRWALImpl
PerformanceMerkleRoot = merkleRootImpl
DRMerkleRoot = merkleRootImpl
LastRemoteWAL = lastRemoteWALImpl
@ -2304,6 +2305,10 @@ func lastPerformanceWALImpl(c *Core) uint64 {
return 0
}
func lastDRWALImpl(c *Core) uint64 {
return 0
}
func lastRemoteWALImpl(c *Core) uint64 {
return 0
}