index_object:max()
-
object
index_object -
index_object:max([key]) Find the maximum value in the specified index.
Parameters: - index_object (index_object) – an object reference.
- key (scalar/table) – values to be matched against the index key
Return: the tuple for the last key in the index. If optional
keyvalue is supplied, returns the last key which is less than or equal tokeyvalue. In a future version of Tarantool, index:max(keyvalue) will return nothing ifkeyvalue is not equal to a value in the index.Rtype: tuple
Possible errors: index is not of type ‘TREE’.
Complexity factors: Index size, Index type.
Example:
tarantool> box.space.tester.index.primary:max() --- - ['Gamma!', 55, 'This is the third tuple!'] ...
-