Loading…
None
New source string testing_project / Documentation: reference/reference_lua/box_schema/func_create — English |
Glossary
| English | English | ||
|---|---|---|---|
| No related strings found in the glossary. | |||
Loading…
None
New source string testing_project / Documentation: reference/reference_lua/box_schema/func_create — English |
| English | English | ||
|---|---|---|---|
| No related strings found in the glossary. | |||
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
...