Received: from malur.postgresql.org ([217.196.149.56]) by arkaria.postgresql.org with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1qGcnh-0005xt-Rq for pgsql-jdbc-commits@arkaria.postgresql.org; Tue, 04 Jul 2023 09:58:25 +0000 Received: from localhost ([127.0.0.1] helo=malur.postgresql.org) by malur.postgresql.org with esmtp (Exim 4.92) (envelope-from ) id 1qGcng-0003L2-Km for pgsql-jdbc-commits@arkaria.postgresql.org; Tue, 04 Jul 2023 09:58:24 +0000 Received: from magus.postgresql.org ([2a02:c0:301:0:ffff::29]) by malur.postgresql.org with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1qGcng-0003Kt-Di for pgsql-jdbc-commits@lists.postgresql.org; Tue, 04 Jul 2023 09:58:24 +0000 Received: from out-18.smtp.github.com ([192.30.252.201]) by magus.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1qGcnZ-0027nK-E1 for pgsql-jdbc-commits@lists.postgresql.org; Tue, 04 Jul 2023 09:58:23 +0000 Received: from github.com (hubbernetes-node-7514cd4.va3-iad.github.net [10.48.135.31]) by smtp.github.com (Postfix) with ESMTPA id 971C5941216 for ; Tue, 4 Jul 2023 02:58:15 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2023; t=1688464695; bh=2934vxykh1ygcmT5/hjaqLVOL2nokyo2zPWTWlRsJvg=; h=Date:From:To:Subject:From; b=a8E28GBIX2endYMM+f2zyP9Zkhm9+5fNEkMvP09D5qPjdAnySTSsnIM5Yl5K5H5pj dz1BTLT5RGCiEHDLafq7OlWmHV/Mh5Y9TPWCd6lEo0bZRr8hzIYgGhHf5lfJrtvyt4 b4Hw7kD3A4BEcWxJm69fbO8V2aQEz0+hmF7bR9fQ= Date: Tue, 04 Jul 2023 02:58:15 -0700 From: Jelte Fennema To: pgsql-jdbc-commits@lists.postgresql.org Message-ID: Subject: [pgjdbc/pgjdbc] 258cff: Use canonical DateStyle name (#2925) 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: 258cff34e32f8b5fe5d71f7553f7ac5f30690f85 https://github.com/pgjdbc/pgjdbc/commit/258cff34e32f8b5fe5d71f7553f7ac5f30690f85 Author: Jelte Fennema Date: 2023-07-04 (Tue, 04 Jul 2023) Changed paths: M pgjdbc/src/main/java/org/postgresql/core/v3/ConnectionFactoryImpl.java Log Message: ----------- Use canonical DateStyle name (#2925) This makes caching variable caching with PgBouncer more efficient, because now the client is setting the same values that the server reports. See these PgBouncer issues/PRs for details: https://github.com/pgbouncer/pgbouncer/issues/776 https://github.com/pgbouncer/pgbouncer/pull/879