From: Peter Eisentraut Date: Tue, 22 Feb 2022 09:08:11 +0000 (+0100) Subject: Put typtype letters back into consistent order X-Git-Tag: REL_15_BETA1~646 X-Git-Url: http://git.postgresql.org/gitweb/?a=commitdiff_plain;h=9467321649efc1fec28603d4ba35d03202c4ead1;p=postgresql.git Put typtype letters back into consistent order --- diff --git a/src/test/regress/expected/type_sanity.out b/src/test/regress/expected/type_sanity.out index 81c39a01120..d3ac08c9ee3 100644 --- a/src/test/regress/expected/type_sanity.out +++ b/src/test/regress/expected/type_sanity.out @@ -17,7 +17,7 @@ SELECT t1.oid, t1.typname FROM pg_type as t1 WHERE t1.typnamespace = 0 OR (t1.typlen <= 0 AND t1.typlen != -1 AND t1.typlen != -2) OR - (t1.typtype not in ('b', 'c', 'd', 'e', 'p', 'r', 'm')) OR + (t1.typtype not in ('b', 'c', 'd', 'e', 'm', 'p', 'r')) OR NOT t1.typisdefined OR (t1.typalign not in ('c', 's', 'i', 'd')) OR (t1.typstorage not in ('p', 'x', 'e', 'm')); diff --git a/src/test/regress/sql/type_sanity.sql b/src/test/regress/sql/type_sanity.sql index 50a885eb448..5edc1f1f6ed 100644 --- a/src/test/regress/sql/type_sanity.sql +++ b/src/test/regress/sql/type_sanity.sql @@ -20,7 +20,7 @@ SELECT t1.oid, t1.typname FROM pg_type as t1 WHERE t1.typnamespace = 0 OR (t1.typlen <= 0 AND t1.typlen != -1 AND t1.typlen != -2) OR - (t1.typtype not in ('b', 'c', 'd', 'e', 'p', 'r', 'm')) OR + (t1.typtype not in ('b', 'c', 'd', 'e', 'm', 'p', 'r')) OR NOT t1.typisdefined OR (t1.typalign not in ('c', 's', 'i', 'd')) OR (t1.typstorage not in ('p', 'x', 'e', 'm'));