Skip to content
Snippets Groups Projects
Commit 3c08d0d1 authored by Dmitry Simonenko's avatar Dmitry Simonenko
Browse files

box-lua: box.select_limit lua test update

parent 47e62560
No related branches found
No related tags found
No related merge requests found
...@@ -123,7 +123,7 @@ function box.on_reload_configuration() ...@@ -123,7 +123,7 @@ function box.on_reload_configuration()
return space.index[ino]:select_range(limit, ...) return space.index[ino]:select_range(limit, ...)
end end
space_mt.select_limit = function(space, ino, offset, limit, ...) space_mt.select_limit = function(space, ino, offset, limit, ...)
return box.select_limit(space.n, ino, offset, limit, ...) return box.select_limit(space.n, ino, offset, limit, ...)
end end
space_mt.insert = function(space, ...) return box.insert(space.n, ...) end space_mt.insert = function(space, ...) return box.insert(space.n, ...) end
space_mt.update = function(space, ...) return box.update(space.n, ...) end space_mt.update = function(space, ...) return box.update(space.n, ...) end
......
No preview for this file type
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment