Skip to content

Commit 9467321

Browse files
committed
Put typtype letters back into consistent order
1 parent 52e4f0c commit 9467321

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/test/regress/expected/type_sanity.out

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ SELECT t1.oid, t1.typname
1717
FROM pg_type as t1
1818
WHERE t1.typnamespace = 0 OR
1919
(t1.typlen <= 0 AND t1.typlen != -1 AND t1.typlen != -2) OR
20-
(t1.typtype not in ('b', 'c', 'd', 'e', 'p', 'r', 'm')) OR
20+
(t1.typtype not in ('b', 'c', 'd', 'e', 'm', 'p', 'r')) OR
2121
NOT t1.typisdefined OR
2222
(t1.typalign not in ('c', 's', 'i', 'd')) OR
2323
(t1.typstorage not in ('p', 'x', 'e', 'm'));

src/test/regress/sql/type_sanity.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ SELECT t1.oid, t1.typname
2020
FROM pg_type as t1
2121
WHERE t1.typnamespace = 0 OR
2222
(t1.typlen <= 0 AND t1.typlen != -1 AND t1.typlen != -2) OR
23-
(t1.typtype not in ('b', 'c', 'd', 'e', 'p', 'r', 'm')) OR
23+
(t1.typtype not in ('b', 'c', 'd', 'e', 'm', 'p', 'r')) OR
2424
NOT t1.typisdefined OR
2525
(t1.typalign not in ('c', 's', 'i', 'd')) OR
2626
(t1.typstorage not in ('p', 'x', 'e', 'm'));

0 commit comments

Comments
 (0)