fix sequence bug

This commit is contained in:
xuejmnet 2021-09-04 08:12:45 +08:00
parent 4252b231ec
commit 2dfe49dc9c
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ namespace ShardingCore.Sharding.StreamMergeEngines.EnumeratorStreamMergeEngines.
{ {
if (!stopSkip) if (!stopSkip)
{ {
if (routeQueryResult.QueryResult >= currentSkip) if (routeQueryResult.QueryResult > currentSkip)
{ {
stopSkip = true; stopSkip = true;
} }