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 25C5B27307 for ; Thu, 21 Feb 2019 13:01:40 -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 1_C-mCMiHHSl for ; Thu, 21 Feb 2019 13:01:40 -0500 (EST) Received: from smtpng2.m.smailru.net (smtpng2.m.smailru.net [94.100.179.3]) (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 552F027291 for ; Thu, 21 Feb 2019 13:01:39 -0500 (EST) From: Nikita Pettik Subject: [tarantool-patches] [PATCH 0/2] Add collation to built-in funcs and fix HAVING clause with aggregate Date: Thu, 21 Feb 2019 21:01:33 +0300 Message-Id: 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: v.shpilevoy@tarantool.org, Nikita Pettik Issue #3932 consists of two independent bugs. Current patch-set provides fixes for both of them. Branch: https://github.com/tarantool/tarantool/tree/np/gh-3932-function-collation Issue: https://github.com/tarantool/tarantool/issues/3932 Nikita Pettik (2): sql: derive collation for built-in functions sql: fix code generation for aggregate in HAVING clause src/box/sql/analyze.c | 6 +++--- src/box/sql/expr.c | 23 +++++++++++++++++++++++ src/box/sql/func.c | 22 +++++++++++----------- src/box/sql/resolve.c | 10 +++++++--- src/box/sql/sqlInt.h | 31 +++++++++++++++++++++++-------- test/sql-tap/select5.test.lua | 25 ++++++++++++++++++++++++- test/sql/collation.result | 28 ++++++++++++++++++++++++++++ test/sql/collation.test.lua | 11 +++++++++++ 8 files changed, 130 insertions(+), 26 deletions(-) -- 2.15.1