box: introduce indices by UUID
It is now possible to create an index over UUID values, returned by `uuid.new()`. Closes #4268 Closes #2916 @TarantoolBot document Title: Document uuid field type. There's a new field type -- UUID, it accepts values returned by `uuid.new()`. The index may be either unique or non-unique, nullable or non-nullable, and may be a primary key. The values in an index are ordered lexicographically by their string representation. To create an index over a uuid field for space `test`, say: ``` box.space.test:create_index("pk", {parts={1, 'uuid'}}) ``` Now you may insert uuids into the space: ``` tarantool> box.space.test:insert{uuid.new()} --- - [e631fdcc-0e8a-4d2f-83fd-b0ce6762b13f] ... tarantool> box.space.test:insert{uuid.fromstr('64d22e4d-ac92-4a23-899a-e59f34af5479')} --- - [64d22e4d-ac92-4a23-899a-e59f34af5479] ... tarantool> box.space.test:select{} --- - - [64d22e4d-ac92-4a23-899a-e59f34af5479] - [e631fdcc-0e8a-4d2f-83fd-b0ce6762b13f] ... ```
Showing
- src/box/field_def.c 19 additions, 13 deletionssrc/box/field_def.c
- src/box/field_def.h 1 addition, 0 deletionssrc/box/field_def.h
- src/box/tuple_compare.cc 53 additions, 0 deletionssrc/box/tuple_compare.cc
- test/engine/ddl.result 96 additions, 1 deletiontest/engine/ddl.result
- test/engine/ddl.test.lua 41 additions, 1 deletiontest/engine/ddl.test.lua
- test/engine/uuid.result 55 additions, 0 deletionstest/engine/uuid.result
- test/engine/uuid.test.lua 27 additions, 0 deletionstest/engine/uuid.test.lua
Loading
Please register or sign in to comment