You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Per our message style guidelines, for human consumption we quote
qualified names as a whole rather than each part separately; but commits
bc08520 introduced a deviation for extended statistics and
a4d75c8 copied it. I don't agree with this policy applying to
names shown by psql, but that's a poor reason to deviate from the
practice only in two obscure corners, so make said corners use the same
style as everywhere else.
Backpatch to 14. The first of these is older, but I'm not sure we want
to destabilize the psql output in the older branches for such a small
thing.
Discussion: https://postgr.es/m/20210828181618.GS26465@telsasoft.com
Copy file name to clipboardExpand all lines: src/test/regress/expected/create_table_like.out
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -416,8 +416,8 @@ Indexes:
416
416
Check constraints:
417
417
"ctlt1_a_check" CHECK (length(a) > 2)
418
418
Statistics objects:
419
-
"public"."ctlt_all_a_b_stat" ON a, b FROM ctlt_all
420
-
"public"."ctlt_all_expr_stat" ON ((a || b)) FROM ctlt_all
419
+
"public.ctlt_all_a_b_stat" ON a, b FROM ctlt_all
420
+
"public.ctlt_all_expr_stat" ON ((a || b)) FROM ctlt_all
421
421
422
422
SELECT c.relname, objsubid, description FROM pg_description, pg_index i, pg_class c WHERE classoid = 'pg_class'::regclass AND objoid = i.indexrelid AND c.oid = i.indexrelid AND i.indrelid = 'ctlt_all'::regclass ORDER BY c.relname, objsubid;
423
423
relname | objsubid | description
@@ -456,8 +456,8 @@ Indexes:
456
456
Check constraints:
457
457
"ctlt1_a_check" CHECK (length(a) > 2)
458
458
Statistics objects:
459
-
"public"."pg_attrdef_a_b_stat" ON a, b FROM public.pg_attrdef
460
-
"public"."pg_attrdef_expr_stat" ON ((a || b)) FROM public.pg_attrdef
459
+
"public.pg_attrdef_a_b_stat" ON a, b FROM public.pg_attrdef
460
+
"public.pg_attrdef_expr_stat" ON ((a || b)) FROM public.pg_attrdef
461
461
462
462
DROP TABLE public.pg_attrdef;
463
463
-- Check that LIKE isn't confused when new table masks the old, either
@@ -478,8 +478,8 @@ Indexes:
478
478
Check constraints:
479
479
"ctlt1_a_check" CHECK (length(a) > 2)
480
480
Statistics objects:
481
-
"ctl_schema"."ctlt1_a_b_stat" ON a, b FROM ctlt1
482
-
"ctl_schema"."ctlt1_expr_stat" ON ((a || b)) FROM ctlt1
481
+
"ctl_schema.ctlt1_a_b_stat" ON a, b FROM ctlt1
482
+
"ctl_schema.ctlt1_expr_stat" ON ((a || b)) FROM ctlt1
0 commit comments