bugfix: mongo getMore command field batchSize cannot replace with limit (#1666)

This commit is contained in:
learno
2022-10-19 17:04:49 +08:00
committed by GitHub
parent 1a1d8abd2e
commit ae35b3c4e8

View File

@@ -690,7 +690,7 @@ function mongo_cursor:hasNext()
else
if self.__cursor and self.__cursor > 0 then
local name = self.__collection.name
response = database:runCommand("getMore", bson_int64(self.__cursor), "collection", name, "batchSize", self.__limit)
response = database:runCommand("getMore", bson_int64(self.__cursor), "collection", name)
else
-- no more
self.__document = nil
@@ -754,4 +754,4 @@ function mongo_cursor:close()
end
end
return mongo
return mongo