PG18 - unify psql headings to ‘List of relations’ (#8119)

fixes #8110 

This patch updates the `normalize.sed` script used in pg18 psql
regression tests:

- Replaces the headings “List of tables”, “List of indexes”, and “List
of sequences” with a single, uniform heading: “List of relations”.
pull/8078/head^2
Mehmet YILMAZ 2025-08-13 12:22:23 +03:00 committed by GitHub
parent bfc6d1f440
commit 41883cea38
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 5 additions and 0 deletions

View File

@ -339,3 +339,8 @@ s/(actual rows=[0-9]+)\.[0-9]+/\1/g
# ignore XML <Disabled>true</Disabled> or <Disabled>false</Disabled>
/^\s*<Disabled>.*<\/Disabled>/d
# pg18 “Disabled” change end
# PG18 psql: headings changed from "List of relations" to per-type titles
s/^([ \t]*)List of tables$/\1List of relations/g
s/^([ \t]*)List of indexes$/\1List of relations/g
s/^([ \t]*)List of sequences$/\1List of relations/g