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 40C5424750 for ; Mon, 2 Jul 2018 10:55:58 -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 DedZGLHiQj9m for ; Mon, 2 Jul 2018 10:55:58 -0400 (EDT) Received: from smtp54.i.mail.ru (smtp54.i.mail.ru [217.69.128.34]) (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 00126243AC for ; Mon, 2 Jul 2018 10:55:57 -0400 (EDT) Content-Type: text/plain; charset=utf-8 Mime-Version: 1.0 (Mac OS X Mail 10.3 \(3273\)) Subject: [tarantool-patches] Re: [PATCH v1 1/1] sql: show formated MsgPack BLOB on select From: "n.pettik" In-Reply-To: <50e6e53a-ed40-f051-a236-2b528d8f9d2b@tarantool.org> Date: Mon, 2 Jul 2018 17:55:55 +0300 Content-Transfer-Encoding: quoted-printable Message-Id: <1ECACBA2-8B87-416B-9C9D-DF4A0FE4FA03@tarantool.org> References: <3778fd7451fde6e28b3b4c9fcf88fb310a8b50b6.1530534766.git.kshcherbatov@tarantool.org> <625D5EC7-6D4C-4D9A-9115-DB88773D5979@tarantool.org> <50e6e53a-ed40-f051-a236-2b528d8f9d2b@tarantool.org> 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 Shcherbatov > --- a/src/box/sql/vdbeapi.c > +++ b/src/box/sql/vdbeapi.c > @@ -1047,6 +1047,12 @@ sqlite3_column_type(sqlite3_stmt * pStmt, int = i) > return iType; > } >=20 > +unsigned int > +sql_column_subtype(struct sqlite3_stmt *stmt, int i) > +{ > + return sqlite3_value_subtype(columnMem(stmt, i));; Double =E2=80=98;=E2=80=99 at the end of line. Except for this, LGTM.