Revision 14202
Added by Aaron Marcuse-Kubitza over 10 years ago
util.sql | ||
---|---|---|
1672 | 1672 |
CREATE FUNCTION derived_col_constraints_enable(table_ regclass) RETURNS void |
1673 | 1673 |
LANGUAGE sql |
1674 | 1674 |
AS $$ |
1675 |
SELECT util.check_constraint_enable(derived_col_def.col::util.table_item)
|
|
1675 |
SELECT util.derived_col_constraint_enable(derived_col_def.col)
|
|
1676 | 1676 |
FROM util.derived_col_defs(table_) derived_col_def |
1677 | 1677 |
$$; |
1678 | 1678 |
|
Also available in: Unified diff
schemas/util.sql: derived_col_constraints_enable(): use new derived_col_constraint_enable()