oss LastDRWAL (#12931)
This commit is contained in:
parent
7dcae18641
commit
92e6972b86
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue