We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Product: Tarantool Since: 2.7.1 Audience/target: Lua devs Root document: SME: @olegrok Peer reviewer: @ documentarian name
Currently comparison between uuid values is supported.
Example:
u1 = uuid.fromstr('aaaaaaaa-aaaa-4000-b000-000000000001') u2 = uuid.fromstr('bbbbbbbb-bbbb-4000-b000-000000000001') u1 > u2 -- false u1 >= u2 -- false u1 <= u2 -- true u1 < u2 -- true
Also it's possible to compare uuid values with its string representations:
u1_str = 'aaaaaaaa-aaaa-4000-b000-000000000001' u1 = uuid.fromstr(u1_str) u2_str = 'bbbbbbbb-bbbb-4000-b000-000000000001' u1 == u1_str -- true u1 == u2_str -- false u1 >= u1_str -- true u1 < u2_str -- true
Requested by @olegrok in tarantool/tarantool@e27745a.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
uuid comparison rules
Product: Tarantool
Since: 2.7.1
Audience/target: Lua devs
Root document:
SME: @olegrok
Peer reviewer: @ documentarian name
Details
Currently comparison between uuid values is supported.
Example:
Also it's possible to compare uuid values with its string
representations:
Requested by @olegrok in tarantool/tarantool@e27745a.
The text was updated successfully, but these errors were encountered: