typo in alter_table.sgml (was: Re: pgsql: Allow ALTER COLUMN SET EXPRESSION on virtual columns with CHECK)

Started by Erik Rijkers7 months ago3 messageshackerscomitters
Beta feature

Hackorum builds and tests every patch posted to the lists, not only commitfest submissions. This is Hackorum's own CI rather than the PostgreSQL project's, and it is still under testing - please report anything that looks wrong.

won't retrysuccessCI history

You can run a PostgreSQL built from this patch straight from Docker, with no checkout and no build:

docker run --rm -p 5432:5432 ghcr.io/hackorum-dev/postgres-patch:t53406
psql -h localhost -U postgres

Built from patchset v1 (message #1), July 27, 2026 at 03:45 AM.

Every patchset is also pushed to a branch of our PostgreSQL fork, so you can check out the same tree CI built. Without a PostgreSQL checkout:

git clone --branch t53406_1 https://github.com/hackorum-dev/postgres.git

In a checkout you already have, add the fork once:

git remote add hackorum https://github.com/hackorum-dev/postgres.git

then, for this patchset and every later one:

git fetch hackorum t53406_1 && git checkout t53406_1

Patchset v1 (message #1) is on t53406_1

Jump to latest
#1Erik Rijkers
er@xs4all.nl
hackerscomitters

Op 2/24/26 om 10:42 schreef Peter Eisentraut:

Allow ALTER COLUMN SET EXPRESSION on virtual columns with CHECK constraints
[...]

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/f80bedd52b1501de51b7180cd817e3e1fc31429d

Modified Files
--------------
doc/src/sgml/ref/alter_table.sgml | 3 ++

Hi,

Typo in doc/src/sgml/ref/alter_table.sgml:

-      Replacing the expression of a virtual generated column do not 
require a
+      Replacing the expression of a virtual generated column does not 
require a

Thanks,

Erik

Attachments:

t53406_1
alter_table.sgml.20260226.difftext/x-patch; charset=UTF-8; name=alter_table.sgml.20260226.diffDownload+1-1
#2Chao Li
li.evan.chao@gmail.com
In reply to: Erik Rijkers (#1)
hackerscomitters
Re: typo in alter_table.sgml (was: Re: pgsql: Allow ALTER COLUMN SET EXPRESSION on virtual columns with CHECK)

On Feb 26, 2026, at 22:16, Erik Rijkers <er@xs4all.nl> wrote:

Op 2/24/26 om 10:42 schreef Peter Eisentraut:

Allow ALTER COLUMN SET EXPRESSION on virtual columns with CHECK constraints
[...]
Branch
------
master
Details
-------
https://git.postgresql.org/pg/commitdiff/f80bedd52b1501de51b7180cd817e3e1fc31429d
Modified Files
--------------
doc/src/sgml/ref/alter_table.sgml | 3 ++

Hi,

Typo in doc/src/sgml/ref/alter_table.sgml:

-      Replacing the expression of a virtual generated column do not require a
+      Replacing the expression of a virtual generated column does not require a

Thanks,

Erik

<alter_table.sgml.20260226.diff>

“Do” -> “does”, looks like a correct grammar fix to me.

Best regards,
--
Chao Li (Evan)
HighGo Software Co., Ltd.
https://www.highgo.com/

#3Michael Paquier
michael@paquier.xyz
In reply to: Erik Rijkers (#1)
hackerscomitters
Re: typo in alter_table.sgml (was: Re: pgsql: Allow ALTER COLUMN SET EXPRESSION on virtual columns with CHECK)

On Thu, Feb 26, 2026 at 03:16:22PM +0100, Erik Rijkers wrote:

-      Replacing the expression of a virtual generated column do not require
a
+      Replacing the expression of a virtual generated column does not
require a

Thanks. This applies only to HEAD. Grabbed that for later.
--
Michael