-
Notifications
You must be signed in to change notification settings - Fork 45
Closed
Labels
bugSomething isn't workingSomething isn't working
Description
There is an explicit type checks for SELECT, UPDATE and DELETE operation keys:
tarantool-python/tarantool/utils.py
Line 26 in 5ffe902
supported_types = integer_types + string_types + binary_types + (float,) |
Extended types are not supported yet:
>>> conn.select('space', uuid.uuid4())
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/home/georgymoiseev/Development/github/tarantool/tarantool-python/tarantool/connection.py", line 1519, in select
key = check_key(key, select=True)
File "/home/georgymoiseev/Development/github/tarantool/tarantool-python/tarantool/utils.py", line 51, in check_key
assert isinstance(key, supported_types)
AssertionError
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working