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
SELECT description FROM pg_description, pg_constraint c WHERE classoid = 'pg_constraint'::regclass AND objoid = c.oid AND c.conrelid = 'ctlt1_inh'::regclass;
@@ -165,7 +162,6 @@ Check constraints:
165
162
"ctlt3_a_check" CHECK (length(a) < 5)
166
163
Inherits: ctlt1,
167
164
ctlt3
168
-
Replica Identity: DEFAULT
169
165
Has OIDs: no
170
166
171
167
CREATE TABLE ctlt13_like (LIKE ctlt3 INCLUDING CONSTRAINTS INCLUDING COMMENTS INCLUDING STORAGE) INHERITS (ctlt1);
@@ -181,7 +177,6 @@ Check constraints:
181
177
"ctlt1_a_check" CHECK (length(a) > 2)
182
178
"ctlt3_a_check" CHECK (length(a) < 5)
183
179
Inherits: ctlt1
184
-
Replica Identity: DEFAULT
185
180
Has OIDs: no
186
181
187
182
SELECT description FROM pg_description, pg_constraint c WHERE classoid = 'pg_constraint'::regclass AND objoid = c.oid AND c.conrelid = 'ctlt13_like'::regclass;
@@ -203,7 +198,6 @@ Indexes:
203
198
"ctlt_all_expr_idx" btree ((a || b))
204
199
Check constraints:
205
200
"ctlt1_a_check" CHECK (length(a) > 2)
206
-
Replica Identity: DEFAULT
207
201
Has OIDs: no
208
202
209
203
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;