-
Notifications
You must be signed in to change notification settings - Fork 45
Closed
Labels
Description
Tarantool 1.6.8-725-g620b89f + tarantool-python 0.5.4 + python 2.7.8
Can't select all records without specifying a key - raises
DatabaseError: (19, 'Invalid key part count in an exact match (expected 1, got 0)')
None of the examples from documentation work.
c = Connection("127.0.0.1", 3301)
c.select('filters') # 'filters' - space name
c.select(515) # 515 - space id
c.select('filters', [])
c.select(515, [])
All of the above produce errors
box.space.filters:select{}
works perfectly in tarantool console