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.96) (envelope-from ) id 1wVA6u-001k22-0n for pgsql-bugs@arkaria.postgresql.org; Thu, 04 Jun 2026 15:35:56 +0000 Received: from localhost ([127.0.0.1] helo=malur.postgresql.org) by malur.postgresql.org with esmtp (Exim 4.96) (envelope-from ) id 1wVA6s-007IWq-0l for pgsql-bugs@arkaria.postgresql.org; Thu, 04 Jun 2026 15:35:54 +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.96) (envelope-from ) id 1wVA6r-007IWi-30 for pgsql-bugs@lists.postgresql.org; Thu, 04 Jun 2026 15:35:53 +0000 Received: from momjian.us ([72.94.173.45]) by magus.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.98.2) (envelope-from ) id 1wVA6p-00000001GFz-1CRu for pgsql-bugs@lists.postgresql.org; Thu, 04 Jun 2026 15:35:53 +0000 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=momjian.us; s=2026010100; h=In-Reply-To:Content-Transfer-Encoding:Content-Type: MIME-Version:References:Message-ID:Subject:Cc:To:From:Date:Sender:Reply-To: Content-ID:Content-Description; bh=/Fnx+ZUbNf/3cAlDEXguY0Uf6cOnAgvAC2VhBD+tROc=; b=rTZWkfhPBoTEC2c0d9oyC9lIm7 SCnF1fTVcTKE/NEoJ1TiqCVRI+76SkCaRd3acLHHn1B7YgGsg1wIWqgIp3tQ0BlNOGiv665ubciTM C3auF1R/Or+dkZbvRm3kzwTU0WoYxPR4D0kz5JoKoy81dkSeGVc1te/ZpzzKqZnbs6ERUr9HF5ucJ VFtpwOKiAC3g8CWbgy52skDvLAmOY3N4X6/2hG+KvG8kWUbR+8dUne3r4apUVf2m4zzF2+cHL3Bld grqgtIu4lPPdJWjFFWoPKAtBA6YYKYinxFZpAwaHmdXDfPkuutK4/1Vm7zHnCTtmHALS/gL8offKB bsiU64rg==; Received: from bruce by momjian.us with local (Exim 4.98.2) (envelope-from ) id 1wVA6m-00000005RfD-24HY; Thu, 04 Jun 2026 11:35:48 -0400 Date: Thu, 4 Jun 2026 11:35:48 -0400 From: Bruce Momjian To: Sergey Shinderuk Cc: pgsql-bugs@lists.postgresql.org Subject: Re: BUG #19509: Typo in 19 beta release notes (debug_print_parse) Message-ID: References: <19509-2a8a94637d323f44@postgresql.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: List-Id: List-Help: List-Subscribe: List-Post: List-Owner: List-Archive: Archived-At: Precedence: bulk On Thu, Jun 4, 2026 at 06:22:33PM +0300, Sergey Shinderuk wrote: > On Thu, 2026-06-04 at 14:55 +0000, PG Bug reporting form wrote: > > The following bug has been logged on the website: > > > > Bug reference:      19509 > > Logged by:          Sergey Shinderuk > > Email address:      s.shinderuk@postgrespro.ru > > PostgreSQL version: 19beta1 > > Operating system:   Debian GNU/Linux 13 (trixie) > > Description:        > > > > Good day, > > > > I've found a typo in 19 beta release notes: > > https://www.postgresql.org/docs/19/release-19.html#RELEASE-19-MONITORING > > > > > Add server variable debug_print_parse to log the raw parse tree > > > (Chao Li) > > > > Should be debug_print_raw_parse. > > https://git.postgresql.org/gitweb/?p=postgresql.git;a=commitdiff;h=06473f5a3 > > > > Best regards, > > Sergey > > > > > Two more: > > > Add server-side report for SNI (Server Name Indication) (Daniel > Gustafsson, Jacob Champion) > > s/report/support/ Thanks, will fix. > > Allow CREATE SCHEMA to create more types of non-schema objects > (Kirill Reshke, Jian He, Tom Lane) > > s/non-schema/schema/ I think the existing wording is right. This is about creating schema elements inside of schemas: CREATE SCHEMA schema_name [ AUTHORIZATION role_specification ] [ schema_element [ ... ] ] schema_element An SQL statement defining an object to be created within the schema. Currently, only CREATE AGGREGATE, CREATE COLLATION, CREATE DOMAIN, CREATE FUNCTION, CREATE INDEX, CREATE OPERATOR, CREATE PROCEDURE, CREATE SEQUENCE, CREATE TABLE, CREATE TEXT SEARCH CONFIGURATION, CREATE TEXT SEARCH DICTIONARY, CREATE TEXT SEARCH PARSER, CREATE TEXT SEARCH TEMPLATE, CREATE TRIGGER, CREATE TYPE, CREATE VIEW, and GRANT are accepted as clauses within CREATE SCHEMA. Other kinds of objects may be created within the schema in separate commands after the schema is created. I have reworded it to be: Allow CREATE SCHEMA to create more types of objects in newly-created schemas (Kirill Reshke, Jian He, Tom Lane) -- Bruce Momjian https://momjian.us EDB https://enterprisedb.com Do not let urgent matters crowd out time for investment in the future.