Skip to content

Commit fac1885

Browse files
committed
Fix schema parsing with new Tarantool 1.7.5 _index parts
1 parent 4241579 commit fac1885

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-2
lines changed

asynctnt/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
from .connection import Connection, connect
22
from .iproto.protocol import Iterator, Response
33

4-
__version__ = '0.1.9'
4+
__version__ = '0.1.10'

asynctnt/iproto/schema.pyx

+13-1
Original file line numberDiff line numberDiff line change
@@ -211,6 +211,8 @@ cdef class Schema:
211211
SchemaIndex idx
212212
SchemaSpace sp
213213
uint32_t i
214+
int field_id = -1
215+
str field_type
214216

215217
assert index_row is not None
216218

@@ -230,7 +232,17 @@ cdef class Schema:
230232

231233
parts = index_row[5]
232234
if isinstance(parts, (list, tuple)):
233-
for field_id, field_type in parts:
235+
for part in parts:
236+
if isinstance(part, (list, tuple)):
237+
assert len(part) == 2, 'Part len must be 2'
238+
field_id = part[0]
239+
field_type = part[1]
240+
elif isinstance(part, dict):
241+
field_id = part['field']
242+
field_type = part['type']
243+
# TODO: add is_nullable and collation if we really need it
244+
# TODO: in a python driver
245+
234246
cpython.list.PyList_Append(
235247
idx.parts,
236248
(field_id, field_type)

tests/test_common.py

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99

1010

1111
class CommonTestCase(BaseTarantoolTestCase):
12+
1213
async def test__encoding_utf8(self):
1314
p, p_cmp = get_complex_param(replace_bin=False)
1415

0 commit comments

Comments
 (0)