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 0DFE72AF1F for ; Wed, 27 Mar 2019 10:06:21 -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 hAF4gnMSipce for ; Wed, 27 Mar 2019 10:06:20 -0400 (EDT) Received: from smtp56.i.mail.ru (smtp56.i.mail.ru [217.69.128.36]) (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 BA85E2AF1C for ; Wed, 27 Mar 2019 10:06:20 -0400 (EDT) Date: Wed, 27 Mar 2019 17:06:18 +0300 From: Kirill Yukhin Subject: [tarantool-patches] Re: [PATCH v2 0/7] sql: store regular identifiers in case-normal form Message-ID: <20190327140618.swgx4o7zlxvoy6c7@tarantool.org> References: MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: 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, Kirill Shcherbatov Hello, On 27 Feb 14:13, Kirill Shcherbatov wrote: > Perform SQL name normalization: cast name to the upper-case > (via Unicode Character Folding). Casing is locale-dependent > and context-sensitive. The result may be longer or shorter > than the original. For example, ß is converted to SS. > The result is similar to SQL UPPER function. > > Performed extensive code refactoring to pass parser instance in > routines that use sql_normalize_name function. This makes > possible to raise an error in case of normalizing failure. > > Changes in version 2: > - Setup parser error externally > > Branch: http://github.com/tarantool/tarantool/tree/kshch/gh-3991-fix-names-normalization > Issue: https://github.com/tarantool/tarantool/issues/3931 I've committed your patchset into master and 2.1 branches. -- Regards, Kirill Yukhin