Received: from malur.postgresql.org ([217.196.149.56]) by arkaria.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1u4NSP-001IAp-9f for pgsql-general@arkaria.postgresql.org; Mon, 14 Apr 2025 17:18:53 +0000 Received: from localhost ([127.0.0.1] helo=malur.postgresql.org) by malur.postgresql.org with esmtp (Exim 4.94.2) (envelope-from ) id 1u4NSN-003l7H-KM for pgsql-general@arkaria.postgresql.org; Mon, 14 Apr 2025 17:18:52 +0000 Received: from magus.postgresql.org ([2a02:c0:301:0:ffff::29]) by malur.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1u4NSN-003l79-8m for pgsql-general@lists.postgresql.org; Mon, 14 Apr 2025 17:18:52 +0000 Received: from mail1.dalibo.net ([51.159.93.128] helo=mail.dalibo.com) by magus.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1u4NSK-00049E-2b for pgsql-general@lists.postgresql.org; Mon, 14 Apr 2025 17:18:51 +0000 Received: from karst (82-65-23-130.subs.proxad.net [82.65.23.130]) by mail.dalibo.com (Postfix) with ESMTPSA id 6D50A27E5F; Mon, 14 Apr 2025 19:18:47 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=dalibo.com; s=a; t=1744651127; bh=m4WOJ0Tue3LVpeLqdvI6wZFFaY2uEJO2cfMF2UQJOJA=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=Iiw5Q8hFWvHKotyPSYKyYipF0i3iI6ZRs7VZJFmn8TldgHw6FyRaCQ+yRA6i+v5iq p4QQXIGUNlvffjpYInKi5ZqUSI8z1y/mCXWVYnkkjt/Mit2DCRXnAZy+pFqgXOF8pl H/ZEzhVN7VGuX49gLgd+RFto1v9/bG95pVSgkuNU= Date: Mon, 14 Apr 2025 19:18:46 +0200 From: Jehan-Guillaume de Rorthais To: Tom Lane Cc: Laurenz Albe , Thomas Michael Engelke , pgsql-general@lists.postgresql.org Subject: Re: ICU Collations and Collation Updates Message-ID: <20250414191846.39b9415e@karst> In-Reply-To: <1257278.1744641400@sss.pgh.pa.us> References: <8ed41c50ba6c5322296b869e497c1b5573853b54.camel@posteo.de> <1257278.1744641400@sss.pgh.pa.us> Organization: Dalibo MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable List-Id: List-Help: List-Subscribe: List-Post: List-Owner: List-Archive: Archived-At: Precedence: bulk Le Mon, 14 Apr 2025 10:36:40 -0400, Tom Lane a =C3=A9crit : [=E2=80=A6] > 2. It's at least *possible* to use your own fixed-version ICU > library if you're desperate enough. I don't think that would work > too well for libc; you're stuck with what the platform provides. You're not so stuck with what the plateform provides as you can define your= own collation with glibc. Here a quick exemple with an ebcdic collation based on glibc: https://www.postgresql.org/message-id/flat/20230824162653.34eb3bad%40karst#= 31c548587bc98686e010e500a2f97d97 It's probably another level of maintenance to provide a stable UTF8 collati= on using such a procedure though. But it seems possible at least.