space_object:insert()
-
object
space_object
¶ -
space_object:
insert
(tuple)¶ Insert a tuple into a space.
Parameters: - space_object (
space_object
) – an object reference - tuple (
tuple/table
) – tuple to be inserted.
Return: the inserted tuple
Rtype: tuple
Possible errors:
ER_TUPLE_FOUND
if a tuple with the same unique-key value already exists.ER_TRANSACTION_CONFLICT
if a transaction conflict is detected in the MVCC transaction mode.
Example:
tarantool> box.space.tester:insert{5000,'tuple number five thousand'} --- - [5000, 'tuple number five thousand'] ...
For more usage scenarios and typical errors see Example: using data operations further in this section.
- space_object (
-