diff --git a/src/current/_includes/v26.2/known-limitations/drop-trigger-limitations.md b/src/current/_includes/v26.2/known-limitations/drop-trigger-limitations.md deleted file mode 100644 index 90745f7e17a..00000000000 --- a/src/current/_includes/v26.2/known-limitations/drop-trigger-limitations.md +++ /dev/null @@ -1 +0,0 @@ -[`DROP TRIGGER`]({% link {{ page.version.version }}/drop-trigger.md %}) with `CASCADE` is not supported. [#128151](https://github.com/cockroachdb/cockroach/issues/128151) \ No newline at end of file diff --git a/src/current/_includes/v26.2/known-limitations/trigger-limitations.md b/src/current/_includes/v26.2/known-limitations/trigger-limitations.md index 66fcd0018ed..fbc96d97e33 100644 --- a/src/current/_includes/v26.2/known-limitations/trigger-limitations.md +++ b/src/current/_includes/v26.2/known-limitations/trigger-limitations.md @@ -1,10 +1,7 @@ -- `CREATE OR REPLACE TRIGGER` is not supported. [#128422](https://github.com/cockroachdb/cockroach/issues/128422) - Statement-level triggers are not supported. [#126362](https://github.com/cockroachdb/cockroach/issues/126362) - `INSTEAD OF` triggers are not supported. [#126363](https://github.com/cockroachdb/cockroach/issues/126363) -- A [trigger function]({% link {{ page.version.version }}/triggers.md %}#trigger-function) that is used in an existing trigger cannot be replaced with `CREATE OR REPLACE` syntax. To use `CREATE OR REPLACE`, first [drop any triggers]({% link {{ page.version.version }}/drop-trigger.md %}) that are using the function. [#134555](https://github.com/cockroachdb/cockroach/issues/134555) - Hidden columns are not visible to triggers. [#133331](https://github.com/cockroachdb/cockroach/issues/133331) - The `REFERENCING` clause for `CREATE TRIGGER` is not supported. [#135655](https://github.com/cockroachdb/cockroach/issues/135655) - CockroachDB uses one-based indexing for the `TG_ARGV` array to maintain consistency with its array indexing system. This differs from PostgreSQL, where `TG_ARGV` uses zero-based indexing, unlike other PostgreSQL arrays. Trigger functions that reference `TG_ARGV` need to be adjusted when migrating from PostgreSQL. [#135311](https://github.com/cockroachdb/cockroach/issues/135311) - `UPDATE` triggers with a column list (using `UPDATE OF column_name` syntax) are not supported. [#135656](https://github.com/cockroachdb/cockroach/issues/135656) - Statement-level triggers for `TRUNCATE` events are not supported. [#135657](https://github.com/cockroachdb/cockroach/issues/135657) -- {% include {{ page.version.version }}/known-limitations/drop-trigger-limitations.md %} \ No newline at end of file diff --git a/src/current/v26.2/drop-trigger.md b/src/current/v26.2/drop-trigger.md index 39072284ae4..ab1be4618f1 100644 --- a/src/current/v26.2/drop-trigger.md +++ b/src/current/v26.2/drop-trigger.md @@ -61,12 +61,8 @@ Drop the trigger: DROP TRIGGER log_update_timestamp ON users; ~~~ -## Known limitations - -{% include {{ page.version.version }}/known-limitations/drop-trigger-limitations.md %} - ## See also - [Triggers]({% link {{ page.version.version }}/triggers.md %}) - [`CREATE TRIGGER`]({% link {{ page.version.version }}/create-trigger.md %}) -- [`CREATE FUNCTION`]({% link {{ page.version.version }}/create-function.md %}) \ No newline at end of file +- [`CREATE FUNCTION`]({% link {{ page.version.version }}/create-function.md %})