Skip to content

Commit

Permalink
add enterprise callout; remove preview callout
Browse files Browse the repository at this point in the history
  • Loading branch information
taroface committed May 3, 2024
1 parent f9b61f9 commit 34cf277
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 1 addition & 0 deletions src/current/_includes/v24.1/misc/enterprise-features.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

Feature | Description
--------+-------------------------
[Read Committed isolation]({% link {{ page.version.version }}/read-committed.md %}) | Achieve predictable query performance at high workload concurrencies, but without guaranteed transaction serializability.
[Follower Reads]({% link {{ page.version.version }}/follower-reads.md %}) | Reduce read latency in multi-region deployments by using the closest replica at the expense of reading slightly historical data.
[Multi-Region Capabilities]({% link {{ page.version.version }}/multiregion-overview.md %}) | Row-level control over where your data is stored to help you reduce read and write latency and meet regulatory requirements.
[PL/pgSQL]({% link {{ page.version.version }}/plpgsql.md %}) | Use a procedural language in [user-defined functions]({% link {{ page.version.version }}/user-defined-functions.md %}) and [stored procedures]({% link {{ page.version.version }}/stored-procedures.md %}) to improve performance and enable more complex queries.
Expand Down
4 changes: 1 addition & 3 deletions src/current/v24.1/read-committed.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,7 @@ toc: true
docs_area: deploy
---

{{site.data.alerts.callout_info}}
{% include feature-phases/preview.md %}
{{site.data.alerts.end}}
{% include enterprise-feature.md %}

`READ COMMITTED` is one of two [transaction isolation levels](https://wikipedia.org/wiki/Isolation_(database_systems)) supported on CockroachDB. By default, CockroachDB uses the [`SERIALIZABLE`]({% link {{ page.version.version }}/demo-serializable.md %}) isolation level, which is the strongest [ANSI transaction isolation level](https://wikipedia.org/wiki/Isolation_(database_systems)#Isolation_levels).

Expand Down

0 comments on commit 34cf277

Please sign in to comment.