From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp33.i.mail.ru (smtp33.i.mail.ru [94.100.177.93]) (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 A2C824696C3 for ; Sat, 11 Apr 2020 20:18:51 +0300 (MSK) References: <736e6bf5-aea4-ffe4-be7b-2dcc9539065a@tarantool.org> <20200410154003.23687-1-k.sosnin@tarantool.org> From: Vladislav Shpilevoy Message-ID: <31b82eb4-778c-53e1-2b1b-28c87537c6a2@tarantool.org> Date: Sat, 11 Apr 2020 19:18:48 +0200 MIME-Version: 1.0 In-Reply-To: <20200410154003.23687-1-k.sosnin@tarantool.org> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Subject: Re: [Tarantool-patches] [PATCH 4/4] sql: provide a user friendly frontend for accessing session settings List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Chris Sosnin Cc: tarantool-patches@dev.tarantool.org Hi! Thanks for the patchset! I force pushed the style fix below. LGTM now. diff --git a/src/box/sql/parse.y b/src/box/sql/parse.y index 995875566..380fb83d1 100644 --- a/src/box/sql/parse.y +++ b/src/box/sql/parse.y @@ -1544,7 +1544,7 @@ cmd ::= DROP INDEX ifexists(E) nm(X) ON fullname(Y). { ///////////////////////////// The SET SESSION command //////////////////////// // cmd ::= SET SESSION nm(X) EQ term(Y). { - sql_setting_set(pParse,&X,Y.pExpr); + sql_setting_set(pParse, &X, Y.pExpr); } ///////////////////////////// The PRAGMA command /////////////////////////////