Loading…
![]() New source string testing_project / Documentation: reference/reference_lua/box_schema/func_create — English |
Loading…
![]() New source string testing_project / Documentation: reference/reference_lua/box_schema/func_create — English |
tarantool> box.schema.func.create('sum', {body = lua_code})
tarantool> box.func.sum
---
- is_sandboxed: false
is_deterministic: false
id: 2
setuid: false
body: function(a, b) return a + b end
name: sum
language: LUA
...
tarantool> box.func.sum:call({1, 2})
---
- 3
...