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