Skip to content

Commit ab70a01

Browse files
committed
Fix regression test output.
Upstream changes now cause reloption values to be emitted with surrounding quotes. That breaks, for example, the output of \d commands in one of the tests.
1 parent e4033c2 commit ab70a01

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

regress/expected/repack.out

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -139,8 +139,8 @@ INFO: repacking table "tbl_idxopts"
139139
time | timestamp without time zone |
140140
,") | text | not null
141141
Indexes:
142-
"tbl_cluster_pkey" PRIMARY KEY, btree (","")", col1) WITH (fillfactor=75)
143-
",") cluster" btree ("time", length(","")"), ","")" text_pattern_ops) WITH (fillfactor=75) CLUSTER
142+
"tbl_cluster_pkey" PRIMARY KEY, btree (","")", col1) WITH (fillfactor='75')
143+
",") cluster" btree ("time", length(","")"), ","")" text_pattern_ops) WITH (fillfactor='75') CLUSTER
144144

145145
\d tbl_gistkey
146146
Table "public.tbl_gistkey"
@@ -180,8 +180,8 @@ Table "public.tbl_with_dropped_column"
180180
c2 | text |
181181
c3 | text |
182182
Indexes:
183-
"tbl_with_dropped_column_pkey" PRIMARY KEY, btree (id) WITH (fillfactor=75) CLUSTER
184-
"idx_c1c2" btree (c1, c2) WITH (fillfactor=75)
183+
"tbl_with_dropped_column_pkey" PRIMARY KEY, btree (id) WITH (fillfactor='75') CLUSTER
184+
"idx_c1c2" btree (c1, c2) WITH (fillfactor='75')
185185
"idx_c2c1" btree (c2, c1)
186186

187187
\d tbl_with_dropped_toast

0 commit comments

Comments
 (0)