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 1r3XTT-004Nk2-LY for pgsql-jdbc-commits@arkaria.postgresql.org; Thu, 16 Nov 2023 08:11:43 +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 1r3XTQ-005Ye3-8v for pgsql-jdbc-commits@arkaria.postgresql.org; Thu, 16 Nov 2023 08:11:40 +0000 Received: from makus.postgresql.org ([2001:4800:3e1:1::229]) by malur.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1r3XTQ-005Ydv-0j for pgsql-jdbc-commits@lists.postgresql.org; Thu, 16 Nov 2023 08:11:40 +0000 Received: from out-27.smtp.github.com ([192.30.252.210]) by makus.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1r3XTN-005pQ4-6U for pgsql-jdbc-commits@lists.postgresql.org; Thu, 16 Nov 2023 08:11:38 +0000 Received: from github.com (hubbernetes-node-d2c69e3.ash1-iad.github.net [10.56.212.107]) by smtp.github.com (Postfix) with ESMTPA id F1DD26007A3 for ; Thu, 16 Nov 2023 00:11:35 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2023; t=1700122296; bh=qNNFbq3pld8cYQi9c8qs8AJndSfbxtN6wiGR+BDiqHA=; h=Date:From:To:Subject:From; b=SB8UFYz1kzjpOb1THnOUK//LFCiE19E0BsUT1B5HHysY3BT+0LipmGTzOgMxKX7SQ sVgJQc+J0aGX3/J5y2eJmx8Jz+85llfSzwGjnD//VoHdW3J2rF6BG+mYW814tl6dtl a3k9QThcgquk5UmRtGfQl4b8KNDzwWofp9hmgU1w= Date: Thu, 16 Nov 2023 00:11:35 -0800 From: Vladimir Sitnikov To: pgsql-jdbc-commits@lists.postgresql.org Message-ID: Subject: [pgjdbc/pgjdbc] 69debf: fix: sort the results of java.sql.DatabaseMetaData... Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Approved: 58GruLoMopuc X-GitHub-Recipient-Address: pgsql-jdbc-commits@lists.postgresql.org X-Auto-Response-Suppress: All List-Id: List-Help: List-Subscribe: List-Post: List-Owner: List-Archive: Archived-At: Precedence: bulk Branch: refs/heads/master Home: https://github.com/pgjdbc/pgjdbc Commit: 69debfaca743e9ca6aa45b9305162dd64d9c3715 https://github.com/pgjdbc/pgjdbc/commit/69debfaca743e9ca6aa45b9305162dd64d9c3715 Author: Vladimir Sitnikov Date: 2023-11-16 (Thu, 16 Nov 2023) Changed paths: M pgjdbc/src/main/java/org/postgresql/jdbc/PgDatabaseMetaData.java M pgjdbc/src/test/java/org/postgresql/test/jdbc2/DatabaseMetaDataTest.java Log Message: ----------- fix: sort the results of java.sql.DatabaseMetaData#getCatalogs as per its specification This is an follow-up to https://github.com/pgjdbc/pgjdbc/pull/2953 See https://github.com/pgjdbc/pgjdbc/issues/2949