问题 I have space peoples : id name age with two indexes: peoples = box.schema.space.create('peoples', {engine = 'memtx', field_count = 3, if_not_exists = true}) peoples:create_index('primary', {type = 'TREE', unique = true, parts = {1, 'unsigned'}, if_not_exists = true}) peoples:create_index('by_name_age', {type = 'TREE', unique = false, parts = {2, 'STR', 3, 'unsigned'}, if_not_exists = true}) and with data: peoples:auto_increment{ 'name_1', 10 } peoples:auto_increment{ 'name_1', 11 } peoples