Changeset b67d3e3528e327b7942ad1e179bf74c6b22ea0f5
- Timestamp:
- 11/24/09 04:57:32
(3 years ago)
- Author:
- Theo Schlossnagle <jesus@omniti.com>
- git-committer:
- Theo Schlossnagle <jesus@omniti.com> 1259038652 +0000
- git-parent:
[945e6311e33234753312cfc16348db1cebe0fae7]
- git-author:
- Theo Schlossnagle <jesus@omniti.com> 1259038652 +0000
- Message:
limit to a single trigger
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| ra905d08 |
rb67d3e3 |
|
| 94 | 94 | join pg_namespace as n on(p.pronamespace = n.oid) |
|---|
| 95 | 95 | where relname = v_parent_table and nspname = v_schema_name |
|---|
| | 96 | and relnamespace = n.oid |
|---|
| 96 | 97 | and proname <> 'parent_empty' LOOP |
|---|
| 97 | 98 | v_sql := 'CREATE TRIGGER ' || v_rec.tgname || ''; |
|---|