File tree 3 files changed +15
-2
lines changed
3 files changed +15
-2
lines changed Original file line number Diff line number Diff line change 1
1
from .connection import Connection , connect
2
2
from .iproto .protocol import Iterator , Response
3
3
4
- __version__ = '0.1.9 '
4
+ __version__ = '0.1.10 '
Original file line number Diff line number Diff line change @@ -211,6 +211,8 @@ cdef class Schema:
211
211
SchemaIndex idx
212
212
SchemaSpace sp
213
213
uint32_t i
214
+ int field_id = - 1
215
+ str field_type
214
216
215
217
assert index_row is not None
216
218
@@ -230,7 +232,17 @@ cdef class Schema:
230
232
231
233
parts = index_row[5 ]
232
234
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
+
234
246
cpython.list.PyList_Append(
235
247
idx.parts,
236
248
(field_id, field_type)
Original file line number Diff line number Diff line change 9
9
10
10
11
11
class CommonTestCase (BaseTarantoolTestCase ):
12
+
12
13
async def test__encoding_utf8 (self ):
13
14
p , p_cmp = get_complex_param (replace_bin = False )
14
15
You can’t perform that action at this time.
0 commit comments