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 4DF4A2CC6A for ; Mon, 19 Nov 2018 08:47:59 -0500 (EST) 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 AJczeKpd-hpR for ; Mon, 19 Nov 2018 08:47:59 -0500 (EST) Received: from smtpng1.m.smailru.net (smtpng1.m.smailru.net [94.100.181.251]) (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 0954F2CC5F for ; Mon, 19 Nov 2018 08:47:58 -0500 (EST) Subject: [tarantool-patches] Re: [PATCH v1 05/10] sql: EXPLAIN through net.box leads to SEGFAULT References: <34beb94882c75ea855c4af523427e12d8a90c92b.1542460773.git.imeevma@gmail.com> From: Vladislav Shpilevoy Message-ID: Date: Mon, 19 Nov 2018 16:47:56 +0300 MIME-Version: 1.0 In-Reply-To: <34beb94882c75ea855c4af523427e12d8a90c92b.1542460773.git.imeevma@gmail.com> 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: imeevma@tarantool.org, tarantool-patches@freelists.org Hi! Thanks for the patch! I have changed it and moved into new patchset to make review easier. On 17/11/2018 17:03, imeevma@tarantool.org wrote: > EXPLAIN envokes SEGMENTATION FAULT when being executed through > net.box. It happens due to column type of the result of this > function being NULL. > > Needed for #3505 > --- > src/box/execute.c | 11 +++++++---- > src/box/lua/net_box.c | 15 ++++++++------- > test/sql/iproto.result | 11 +++++++++++ > test/sql/iproto.test.lua | 9 ++++++++- > 4 files changed, 34 insertions(+), 12 deletions(-) >