From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp37.i.mail.ru (smtp37.i.mail.ru [94.100.177.97]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dev.tarantool.org (Postfix) with ESMTPS id B11D2445320 for ; Mon, 13 Jul 2020 14:04:39 +0300 (MSK) Date: Mon, 13 Jul 2020 14:04:38 +0300 From: Kirill Yukhin Message-ID: <20200713110438.ybqwjheccagy2uaj@tarantool.org> References: <20200707211957.4974-1-i.kosarev@tarantool.org> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20200707211957.4974-1-i.kosarev@tarantool.org> Subject: Re: [Tarantool-patches] [PATCH] engine: fix assert for multikey indexes List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Ilya Kosarev Cc: tarantool-patches@dev.tarantool.org Hello, On 08 июл 00:19, Ilya Kosarev wrote: > Since 4273ec52e122d6d37c8deedf1bc10732a7e40c0e (box: introduce JSON > Indexes) we can create multikey index using array which might be the > first tuple field. It technically breaks assertion which implies that > first tuple field can't have offset in the tuple field map. Now the > assert us updated correspondingly. According test case is added. > > Closes #5132 > --- > Branch: https://github.com/tarantool/tarantool/tree/i.kosarev/gh-5132-multiey-index-wrong-format-assert > Issue: https://github.com/tarantool/tarantool/issues/5132 I've checked your patch into 2.3, 2.4 and master. -- Regards, Kirill Yukhin > > @ChangeLog: > * Fix assert outdated due to multikey index arrival. In future, please mention issue in brackets: (gh-5132).