Loading…
![]() New source string testing_project / Documentation: reference/reference_lua/box_tuple/upsert — English |
Loading…
![]() New source string testing_project / Documentation: reference/reference_lua/box_tuple/upsert — English |
tarantool> t2 = t:upsert({{'=', 5, 100}})
UPSERT operation failed:
ER_NO_SUCH_FIELD_NO: Field 5 was not found in the tuple
---
...
tarantool> t
---
- [1, 2, 3]
...
tarantool> t2
---
- [1, 2, 3]
...
tarantool> t2 = t:upsert({{'=', 5, 100}, {'+', 1, 3}})
UPSERT operation failed:
ER_NO_SUCH_FIELD_NO: Field 5 was not found in the tuple
---
...
tarantool> t
---
- [1, 2, 3]
...
tarantool> t2
---
- [4, 2, 3]
...