aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAlvaro Herrera <alvherre@alvh.no-ip.org>2018-02-19 17:56:43 -0300
committerAlvaro Herrera <alvherre@alvh.no-ip.org>2018-02-19 17:56:43 -0300
commit4108a28d3a02c4226b0f558cf00738e00e8ea2a1 (patch)
treefb9e79a05ac75cfe6ae8b5075a261b3b111ee565 /src
parenteb7ed3f3063401496e4aa4bd68fa33f0be31a72f (diff)
downloadpostgresql-4108a28d3a02c4226b0f558cf00738e00e8ea2a1.tar.gz
postgresql-4108a28d3a02c4226b0f558cf00738e00e8ea2a1.zip
Fix expected output
Diffstat (limited to 'src')
-rw-r--r--src/test/regress/expected/indexing.out4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/regress/expected/indexing.out b/src/test/regress/expected/indexing.out
index 0a980dc07d3..85e3575b99d 100644
--- a/src/test/regress/expected/indexing.out
+++ b/src/test/regress/expected/indexing.out
@@ -918,7 +918,7 @@ select indrelid::regclass, indexrelid::regclass, inhparent::regclass, indisvalid
indrelid | indexrelid | inhparent | indisvalid | conname | conislocal | coninhcount | connoinherit | convalidated
----------+---------------+--------------+------------+---------------+------------+-------------+--------------+--------------
idxpart0 | idxpart0_pkey | idxpart_pkey | t | idxpart0_pkey | f | 1 | t | t
- idxpart1 | idxpart1_pkey | idxpart_pkey | t | idxpart1_pkey | f | 1 | t | t
+ idxpart1 | idxpart1_pkey | idxpart_pkey | t | idxpart1_pkey | f | 1 | f | t
idxpart | idxpart_pkey | | t | idxpart_pkey | t | 0 | t | t
(3 rows)
@@ -993,7 +993,7 @@ select indrelid::regclass, indexrelid::regclass, inhparent::regclass, indisvalid
indrelid | indexrelid | inhparent | indisvalid | conname | conislocal | coninhcount | connoinherit | convalidated
----------+----------------+--------------+------------+---------------+------------+-------------+--------------+--------------
idxpart1 | idxpart1_a_idx | | t | | | | |
- idxpart1 | idxpart1_pkey | idxpart_pkey | t | idxpart1_pkey | f | 1 | t | t
+ idxpart1 | idxpart1_pkey | idxpart_pkey | t | idxpart1_pkey | f | 1 | f | t
idxpart | idxpart_pkey | | t | idxpart_pkey | t | 0 | t | t
(3 rows)