Small typo fix on tableam documentation
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.
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:t40392psql -h localhost -U postgresBuilt from patchset v1 (message #1), July 28, 2026 at 04:27 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 t40392_1 https://github.com/hackorum-dev/postgres.gitIn a checkout you already have, add the fork once:
git remote add hackorum https://github.com/hackorum-dev/postgres.gitthen, for this patchset and every later one:
git fetch hackorum t40392_1 && git checkout t40392_1Patchset v1 (message #1) is on t40392_1
Hi,
On 2019-04-05 16:26:16 +0000, Alexis Andrieu wrote:
I noticed a small typo (word 'the' is repeated twice) in the recent tableam doc.
The patch remove the typo in the doc ('/doc/src/sgml/tableam.sgml').
Thanks for noticing and reporting! It was already reported by Justin
Pryzby. I'd have given you co-credit if I had seen this email beforehand.
commit 86cc06d1cf9c30be3b79207242e6746f0f0b681c (HEAD -> master, upstream/master)
Author: Andres Freund <andres@anarazel.de>
Date: 2019-04-05 09:45:59 -0700
table: docs: fix typos and grammar.
Author: Justin Pryzby
Discussion: /messages/by-id/20190404055138.GA24864@telsasoft.com
- Andres