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 DDB192B2AA for ; Sun, 30 Sep 2018 20:12:39 -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 yuHZpu0cjfu1 for ; Sun, 30 Sep 2018 20:12:39 -0400 (EDT) Received: from smtp50.i.mail.ru (smtp50.i.mail.ru [94.100.177.110]) (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 9F7952B2A8 for ; Sun, 30 Sep 2018 20:12:39 -0400 (EDT) Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Mac OS X Mail 10.3 \(3273\)) Subject: [tarantool-patches] Re: [PATCH 1/2] sql: fix typo in MakeRecord memory hint From: "n.pettik" In-Reply-To: Date: Mon, 1 Oct 2018 03:12:34 +0300 Content-Transfer-Encoding: 7bit Message-Id: References: 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 Cc: Kirill Yukhin , Alex Khatskevich LGTM. > On 27 Sep 2018, at 15:39, AKhatskevich wrote: > > Part of: #2181 > Related to: #3021 > --- > Issue: https://github.com/tarantool/tarantool/issues/3021 > > src/box/sql/update.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/src/box/sql/update.c b/src/box/sql/update.c > index 730872fc6..1069f62cb 100644 > --- a/src/box/sql/update.c > +++ b/src/box/sql/update.c > @@ -276,9 +276,9 @@ sqlite3Update(Parse * pParse, /* The parser context */ > pPk->def); > sqlite3VdbeAddOp4(v, OP_MakeRecord, iPk, pk_part_count, > regKey, zAff, pk_part_count); > - sqlite3VdbeAddOp2(v, OP_IdxInsert, iEph, regKey); > /* Set flag to save memory allocating one by malloc. */ > sqlite3VdbeChangeP5(v, 1); > + sqlite3VdbeAddOp2(v, OP_IdxInsert, iEph, regKey); > } > /* End the database scan loop. > */ > --