Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/current/v23.1/example-apps.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Click the links in the tables below to see simple but complete example applicati
If you are looking to do a specific task such as connect to the database, insert data, or run multi-statement transactions, see [this list of tasks](#tasks).

{{site.data.alerts.callout_info}}
Applications may encounter incompatibilities when using advanced or obscure features of a driver or ORM with **partial** support. If you encounter problems, please [open an issue](https://github.com/cockroachdb/cockroach/issues/new) with details to help us make progress toward full support.
Applications may encounter incompatibilities when using advanced or obscure features of a driver or ORM with **partial** support. If you encounter problems, please open an issue with details to help us make progress toward full support.
Comment thread
rmloveland marked this conversation as resolved.
Outdated

Note that tools with [**community-level** support]({% link {{ page.version.version }}/community-tooling.md %}) have been tested or developed by the CockroachDB community, but are not officially supported by Cockroach Labs. If you encounter problems with using these tools, please contact the maintainer of the tool with details.
{{site.data.alerts.end}}
Expand Down
2 changes: 1 addition & 1 deletion src/current/v23.1/file-an-issue.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ To file an issue in GitHub, we need the following information:

### Template

You can use this as a template for [filing an issue in GitHub](https://github.com/cockroachdb/cockroach/issues/new):
You can use this as a template for filing an issue in GitHub:
Comment thread
rmloveland marked this conversation as resolved.
Outdated

~~~

Expand Down
2 changes: 1 addition & 1 deletion src/current/v23.1/install-client-drivers.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ docs_area: develop
CockroachDB supports both native drivers and the PostgreSQL wire protocol, so most available PostgreSQL client drivers and ORM frameworks should work with CockroachDB. Choose a language for supported clients, and follow the installation steps. After you install a client library, you can [connect to the database]({% link {{ page.version.version }}/connect-to-the-database.md %}).

{{site.data.alerts.callout_info}}
Applications may encounter incompatibilities when using advanced or obscure features of a driver or ORM framework with **partial** support. If you encounter problems, please [open an issue](https://github.com/cockroachdb/cockroach/issues/new) with details to help us make progress toward full support.
Applications may encounter incompatibilities when using advanced or obscure features of a driver or ORM framework with **partial** support. If you encounter problems, please open an issue with details to help us make progress toward full support.
{{site.data.alerts.end}}

<div class="filters clearfix">
Expand Down
2 changes: 1 addition & 1 deletion src/current/v23.1/intellij-idea.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ You can now use IntelliJ's [database tool window](https://www.jetbrains.com/help

## Report issues with IntelliJ IDEA & CockroachDB

If you encounter issues other than those outlined above, please [file an issue on the `cockroachdb/cockroach` GitHub repo](https://github.com/cockroachdb/cockroach/issues/new?template=bug_report.md), including the following details about the environment where you encountered the issue:
If you encounter issues other than those outlined above, please file an issue on the `cockroachdb/cockroach` GitHub repo, including the following details about the environment where you encountered the issue:
Comment thread
rmloveland marked this conversation as resolved.
Outdated

- CockroachDB version ([`cockroach version`]({% link {{ page.version.version }}/cockroach-version.md %}))
- IntelliJ IDEA version
Expand Down
12 changes: 6 additions & 6 deletions src/current/v23.1/postgresql-compatibility.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ When set to `true`, multiple portals can be open at the same time, with their ex
This feature has the following limitations:

- Only read-only [`SELECT` queries]({% link {{ page.version.version }}/selection-queries.md %}) without [subqueries]({% link {{ page.version.version }}/subqueries.md %}) are supported.
- Postqueries (which are how CockroachDB executes [foreign key checks]({% link {{ page.version.version }}/foreign-key.md %}), for example) are not supported - [cockroachdb/cockroach#96398](https://github.com/cockroachdb/cockroach/issues/96398)
- [Distributed SQL execution]({% link {{ page.version.version }}/architecture/sql-layer.md %}#distsql) is not supported for multiple active portals; instead queries execute on the [gateway node]({% link {{ page.version.version }}/architecture/life-of-a-distributed-transaction.md %}#gateway) only - [cockroachdb/cockroach#100822](https://github.com/cockroachdb/cockroach/issues/100822)
- Only the latest execution of a statement from a pausable portal is recorded by the [trace infrastructure]({% link {{ page.version.version }}/show-trace.md %}) - [cockroachdb/cockroach#99404](https://github.com/cockroachdb/cockroach/issues/99404)
- Postqueries (which are how CockroachDB executes [foreign key checks]({% link {{ page.version.version }}/foreign-key.md %}), for example) are not supported - cockroachdb/cockroach#96398
Comment thread
rmloveland marked this conversation as resolved.
Outdated
- [Distributed SQL execution]({% link {{ page.version.version }}/architecture/sql-layer.md %}#distsql) is not supported for multiple active portals; instead queries execute on the [gateway node]({% link {{ page.version.version }}/architecture/life-of-a-distributed-transaction.md %}#gateway) only - cockroachdb/cockroach#100822
- Only the latest execution of a statement from a pausable portal is recorded by the [trace infrastructure]({% link {{ page.version.version }}/show-trace.md %}) - cockroachdb/cockroach#99404

In addition to the known issues, additional performance testing is needed. The current list of known issues can be viewed [on GitHub using the `A-pausable-portals` label](https://github.com/cockroachdb/cockroach/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc++label%3AA-pausable-portals+), and we welcome bug reports.
In addition to the known issues, additional performance testing is needed. The current list of known issues can be viewed on GitHub using the `A-pausable-portals` label, and we welcome bug reports.

## Features that differ from PostgreSQL

Expand Down Expand Up @@ -181,7 +181,7 @@ An `x` value less than `1` would result in the following error:
pq: check constraint violated
~~~

[Tracking GitHub Issue](https://github.com/cockroachdb/cockroach/issues/35370)
Tracking GitHub Issue
Comment thread
rmloveland marked this conversation as resolved.
Outdated

### Column name from an outer column inside a subquery

Expand All @@ -207,7 +207,7 @@ PostgreSQL:
1
~~~

[Tracking GitHub Issue](https://github.com/cockroachdb/cockroach/issues/46563)
Tracking GitHub Issue

### SQL Compatibility

Expand Down
2 changes: 1 addition & 1 deletion src/current/v23.2/example-apps.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Click the links in the tables below to see simple but complete example applicati
If you are looking to do a specific task such as connect to the database, insert data, or run multi-statement transactions, see [this list of tasks](#tasks).

{{site.data.alerts.callout_info}}
Applications may encounter incompatibilities when using advanced or obscure features of a driver or ORM with **partial** support. If you encounter problems, please [open an issue](https://github.com/cockroachdb/cockroach/issues/new) with details to help us make progress toward full support.
Applications may encounter incompatibilities when using advanced or obscure features of a driver or ORM with **partial** support. If you encounter problems, please open an issue with details to help us make progress toward full support.
Comment thread
rmloveland marked this conversation as resolved.
Outdated

Note that tools with [**community-level** support]({% link {{ page.version.version }}/community-tooling.md %}) have been tested or developed by the CockroachDB community, but are not officially supported by Cockroach Labs. If you encounter problems with using these tools, please contact the maintainer of the tool with details.
{{site.data.alerts.end}}
Expand Down
2 changes: 1 addition & 1 deletion src/current/v23.2/file-an-issue.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ To file an issue in GitHub, we need the following information:

### Template

You can use this as a template for [filing an issue in GitHub](https://github.com/cockroachdb/cockroach/issues/new):
You can use this as a template for filing an issue in GitHub:

~~~

Expand Down
2 changes: 1 addition & 1 deletion src/current/v23.2/install-client-drivers.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ docs_area: develop
CockroachDB supports both native drivers and the PostgreSQL wire protocol, so most available PostgreSQL client drivers and ORM frameworks should work with CockroachDB. Choose a language for supported clients, and follow the installation steps. After you install a client library, you can [connect to the database]({% link {{ page.version.version }}/connect-to-the-database.md %}).

{{site.data.alerts.callout_info}}
Applications may encounter incompatibilities when using advanced or obscure features of a driver or ORM framework with **partial** support. If you encounter problems, please [open an issue](https://github.com/cockroachdb/cockroach/issues/new) with details to help us make progress toward full support.
Applications may encounter incompatibilities when using advanced or obscure features of a driver or ORM framework with **partial** support. If you encounter problems, please open an issue with details to help us make progress toward full support.
{{site.data.alerts.end}}

<div class="filters clearfix">
Expand Down
2 changes: 1 addition & 1 deletion src/current/v23.2/intellij-idea.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ You can now use IntelliJ's [database tool window](https://www.jetbrains.com/help

## Report issues with IntelliJ IDEA & CockroachDB

If you encounter issues other than those outlined above, please [file an issue on the `cockroachdb/cockroach` GitHub repo](https://github.com/cockroachdb/cockroach/issues/new?template=bug_report.md), including the following details about the environment where you encountered the issue:
If you encounter issues other than those outlined above, please file an issue on the `cockroachdb/cockroach` GitHub repo, including the following details about the environment where you encountered the issue:

- CockroachDB version ([`cockroach version`]({% link {{ page.version.version }}/cockroach-version.md %}))
- IntelliJ IDEA version
Expand Down
12 changes: 6 additions & 6 deletions src/current/v23.2/postgresql-compatibility.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ When set to `true`, multiple portals can be open at the same time, with their ex
This feature has the following limitations:

- Only read-only [`SELECT` queries]({% link {{ page.version.version }}/selection-queries.md %}) without [subqueries]({% link {{ page.version.version }}/subqueries.md %}) are supported.
- Postqueries (which are how CockroachDB executes [foreign key checks]({% link {{ page.version.version }}/foreign-key.md %}), for example) are not supported - [cockroachdb/cockroach#96398](https://github.com/cockroachdb/cockroach/issues/96398)
- [Distributed SQL execution]({% link {{ page.version.version }}/architecture/sql-layer.md %}#distsql) is not supported for multiple active portals; instead queries execute on the [gateway node]({% link {{ page.version.version }}/architecture/life-of-a-distributed-transaction.md %}#gateway) only - [cockroachdb/cockroach#100822](https://github.com/cockroachdb/cockroach/issues/100822)
- Only the latest execution of a statement from a pausable portal is recorded by the [trace infrastructure]({% link {{ page.version.version }}/show-trace.md %}) - [cockroachdb/cockroach#99404](https://github.com/cockroachdb/cockroach/issues/99404)
- Postqueries (which are how CockroachDB executes [foreign key checks]({% link {{ page.version.version }}/foreign-key.md %}), for example) are not supported - cockroachdb/cockroach#96398
- [Distributed SQL execution]({% link {{ page.version.version }}/architecture/sql-layer.md %}#distsql) is not supported for multiple active portals; instead queries execute on the [gateway node]({% link {{ page.version.version }}/architecture/life-of-a-distributed-transaction.md %}#gateway) only - cockroachdb/cockroach#100822
- Only the latest execution of a statement from a pausable portal is recorded by the [trace infrastructure]({% link {{ page.version.version }}/show-trace.md %}) - cockroachdb/cockroach#99404

In addition to the known issues, additional performance testing is needed. The current list of known issues can be viewed [on GitHub using the `A-pausable-portals` label](https://github.com/cockroachdb/cockroach/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc++label%3AA-pausable-portals+), and we welcome bug reports.
In addition to the known issues, additional performance testing is needed. The current list of known issues can be viewed on GitHub using the `A-pausable-portals` label, and we welcome bug reports.

## Features that differ from PostgreSQL

Expand Down Expand Up @@ -181,7 +181,7 @@ An `x` value less than `1` would result in the following error:
pq: check constraint violated
~~~

[Tracking GitHub Issue](https://github.com/cockroachdb/cockroach/issues/35370)
Tracking GitHub Issue

### Column name from an outer column inside a subquery

Expand All @@ -207,7 +207,7 @@ PostgreSQL:
1
~~~

[Tracking GitHub Issue](https://github.com/cockroachdb/cockroach/issues/46563)
Tracking GitHub Issue

### SQL Compatibility

Expand Down
2 changes: 1 addition & 1 deletion src/current/v24.1/example-apps.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Click the links in the tables below to see simple but complete example applicati
If you are looking to do a specific task such as connect to the database, insert data, or run multi-statement transactions, see [this list of tasks](#tasks).

{{site.data.alerts.callout_info}}
Applications may encounter incompatibilities when using advanced or obscure features of a driver or ORM with **partial** support. If you encounter problems, please [open an issue](https://github.com/cockroachdb/cockroach/issues/new) with details to help us make progress toward full support.
Applications may encounter incompatibilities when using advanced or obscure features of a driver or ORM with **partial** support. If you encounter problems, please open an issue with details to help us make progress toward full support.

Note that tools with [**community-level** support]({% link {{ page.version.version }}/community-tooling.md %}) have been tested or developed by the CockroachDB community, but are not officially supported by Cockroach Labs. If you encounter problems with using these tools, please contact the maintainer of the tool with details.
{{site.data.alerts.end}}
Expand Down
2 changes: 1 addition & 1 deletion src/current/v24.1/file-an-issue.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ To file an issue in GitHub, we need the following information:

### Template

You can use this as a template for [filing an issue in GitHub](https://github.com/cockroachdb/cockroach/issues/new):
You can use this as a template for filing an issue in GitHub:

~~~

Expand Down
2 changes: 1 addition & 1 deletion src/current/v24.1/install-client-drivers.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ docs_area: develop
CockroachDB supports both native drivers and the PostgreSQL wire protocol, so most available PostgreSQL client drivers and ORM frameworks should work with CockroachDB. Choose a language for supported clients, and follow the installation steps. After you install a client library, you can [connect to the database]({% link {{ page.version.version }}/connect-to-the-database.md %}).

{{site.data.alerts.callout_info}}
Applications may encounter incompatibilities when using advanced or obscure features of a driver or ORM framework with **partial** support. If you encounter problems, please [open an issue](https://github.com/cockroachdb/cockroach/issues/new) with details to help us make progress toward full support.
Applications may encounter incompatibilities when using advanced or obscure features of a driver or ORM framework with **partial** support. If you encounter problems, please open an issue with details to help us make progress toward full support.
{{site.data.alerts.end}}

<div class="filters clearfix">
Expand Down
2 changes: 1 addition & 1 deletion src/current/v24.1/intellij-idea.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ You can now use IntelliJ's [database tool window](https://www.jetbrains.com/help

## Report issues with IntelliJ IDEA & CockroachDB

If you encounter issues other than those outlined above, please [file an issue on the `cockroachdb/cockroach` GitHub repo](https://github.com/cockroachdb/cockroach/issues/new?template=bug_report.md), including the following details about the environment where you encountered the issue:
If you encounter issues other than those outlined above, please file an issue on the `cockroachdb/cockroach` GitHub repo, including the following details about the environment where you encountered the issue:

- CockroachDB version ([`cockroach version`]({% link {{ page.version.version }}/cockroach-version.md %}))
- IntelliJ IDEA version
Expand Down
12 changes: 6 additions & 6 deletions src/current/v24.1/postgresql-compatibility.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ When set to `true`, multiple portals can be open at the same time, with their ex
This feature has the following limitations:

- Only read-only [`SELECT` queries]({% link {{ page.version.version }}/selection-queries.md %}) without [subqueries]({% link {{ page.version.version }}/subqueries.md %}) are supported.
- Postqueries (which are how CockroachDB executes [foreign key checks]({% link {{ page.version.version }}/foreign-key.md %}), for example) are not supported - [cockroachdb/cockroach#96398](https://github.com/cockroachdb/cockroach/issues/96398)
- [Distributed SQL execution]({% link {{ page.version.version }}/architecture/sql-layer.md %}#distsql) is not supported for multiple active portals; instead queries execute on the [gateway node]({% link {{ page.version.version }}/architecture/life-of-a-distributed-transaction.md %}#gateway) only - [cockroachdb/cockroach#100822](https://github.com/cockroachdb/cockroach/issues/100822)
- Only the latest execution of a statement from a pausable portal is recorded by the [trace infrastructure]({% link {{ page.version.version }}/show-trace.md %}) - [cockroachdb/cockroach#99404](https://github.com/cockroachdb/cockroach/issues/99404)
- Postqueries (which are how CockroachDB executes [foreign key checks]({% link {{ page.version.version }}/foreign-key.md %}), for example) are not supported - cockroachdb/cockroach#96398
- [Distributed SQL execution]({% link {{ page.version.version }}/architecture/sql-layer.md %}#distsql) is not supported for multiple active portals; instead queries execute on the [gateway node]({% link {{ page.version.version }}/architecture/life-of-a-distributed-transaction.md %}#gateway) only - cockroachdb/cockroach#100822
- Only the latest execution of a statement from a pausable portal is recorded by the [trace infrastructure]({% link {{ page.version.version }}/show-trace.md %}) - cockroachdb/cockroach#99404

In addition to the known issues, additional performance testing is needed. The current list of known issues can be viewed [on GitHub using the `A-pausable-portals` label](https://github.com/cockroachdb/cockroach/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc++label%3AA-pausable-portals+), and we welcome bug reports.
In addition to the known issues, additional performance testing is needed. The current list of known issues can be viewed on GitHub using the `A-pausable-portals` label, and we welcome bug reports.

## Features that differ from PostgreSQL

Expand Down Expand Up @@ -181,7 +181,7 @@ An `x` value less than `1` would result in the following error:
pq: check constraint violated
~~~

[#35370](https://github.com/cockroachdb/cockroach/issues/35370)
#35370

### Column name from an outer column inside a subquery

Expand All @@ -207,7 +207,7 @@ PostgreSQL:
1
~~~

[#46563](https://github.com/cockroachdb/cockroach/issues/46563)
#46563

### SQL Compatibility

Expand Down
2 changes: 1 addition & 1 deletion src/current/v24.2/example-apps.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Click the links in the tables below to see simple but complete example applicati
If you are looking to do a specific task such as connect to the database, insert data, or run multi-statement transactions, see [this list of tasks](#tasks).

{{site.data.alerts.callout_info}}
Applications may encounter incompatibilities when using advanced or obscure features of a driver or ORM with **partial** support. If you encounter problems, please [open an issue](https://github.com/cockroachdb/cockroach/issues/new) with details to help us make progress toward full support.
Applications may encounter incompatibilities when using advanced or obscure features of a driver or ORM with **partial** support. If you encounter problems, please open an issue with details to help us make progress toward full support.

Note that tools with [**community-level** support]({% link {{ page.version.version }}/community-tooling.md %}) have been tested or developed by the CockroachDB community, but are not officially supported by Cockroach Labs. If you encounter problems with using these tools, please contact the maintainer of the tool with details.
{{site.data.alerts.end}}
Expand Down
2 changes: 1 addition & 1 deletion src/current/v24.2/file-an-issue.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ To file an issue in GitHub, we need the following information:

### Template

You can use this as a template for [filing an issue in GitHub](https://github.com/cockroachdb/cockroach/issues/new):
You can use this as a template for filing an issue in GitHub:

~~~

Expand Down
Loading
Loading