Open
Description
tarantool> box.info.version
---
- 1.10.15-0-ge14d0b4
...
tarantool> crud.update('customers', 1, {{":", "name", 2, 3, "a"}})
---
- null
- line: 177
class_name: UpdateError
err: 'Failed to update: Unknown UPDATE operation'
file: ./crud/update.lua
str: 'UpdateError: Failed to update: Unknown UPDATE operation'
...
yet it is actually supported by Tarantool 1.10.15. The reason is that the operation is converted to invalid [[":",3,2]]
operation:
Lines 776 to 778 in 48f801c