From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from localhost (localhost [127.0.0.1]) by turing.freelists.org (Avenir Technologies Mail Multiplex) with ESMTP id 0BAC928FCF for ; Tue, 21 Aug 2018 20:28:03 -0400 (EDT) Received: from turing.freelists.org ([127.0.0.1]) by localhost (turing.freelists.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 86Lp0RtvRwh4 for ; Tue, 21 Aug 2018 20:28:02 -0400 (EDT) Received: from smtp48.i.mail.ru (smtp48.i.mail.ru [94.100.177.108]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by turing.freelists.org (Avenir Technologies Mail Multiplex) with ESMTPS id BB89126C4A for ; Tue, 21 Aug 2018 20:28:02 -0400 (EDT) Subject: [tarantool-patches] Re: [PATCH v2 5/5] box: specify indexes in user-friendly form References: <85e01e1462538960a3d14276c6cdb1ebbccad43f.1534332920.git.kshcherbatov@tarantool.org> From: Vladislav Shpilevoy Message-ID: <8b88de68-c2c0-b4d2-b8fd-ef74c9e81083@tarantool.org> Date: Wed, 22 Aug 2018 03:28:00 +0300 MIME-Version: 1.0 In-Reply-To: <85e01e1462538960a3d14276c6cdb1ebbccad43f.1534332920.git.kshcherbatov@tarantool.org> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit Sender: tarantool-patches-bounce@freelists.org Errors-to: tarantool-patches-bounce@freelists.org Reply-To: tarantool-patches@freelists.org List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: tarantool-patches List-subscribe: List-owner: List-post: List-archive: To: tarantool-patches@freelists.org, Kirill Shcherbatov What a commit closes the issue? I see that all of them are 'part fo 1012', but what is a final one? On 15/08/2018 15:15, Kirill Shcherbatov wrote: > Since now it is possible to create indexes by JSON-path > using field names specified in format. > > @TarantoolBot document > Title: Indexes by JSON path > Sometimes field data could have complex document structure. > When this structure is consistent across whole document, > you are able to create an index by JSON path. > > Example: > s:create_index('json_index', > {parts = {{'data.FIO["fname"]', 'str'}}}) > > Part of #1012. > --- > src/box/lua/schema.lua | 58 +++++++++++++++++++++++++++++++++++++++------ > test/engine/iterator.result | 2 +- > test/engine/tuple.result | 36 ++++++++++++++++++++++++++++ > test/engine/tuple.test.lua | 10 ++++++++ > 4 files changed, 98 insertions(+), 8 deletions(-) >