Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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/_data/cards.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ develop:
- link: "/PREFIX/schema-design-overview.html"
title: "Design a schema"
text: "Details and best practices about designing schemas for your data."
- link: "/PREFIX/insert-data.html"
- link: "/PREFIX/insert.html"
title: "Write data"
text: "How to insert data into your cluster."
- link: "/PREFIX/query-behavior-troubleshooting.html"
Expand Down
28 changes: 28 additions & 0 deletions src/current/_data/redirects.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1120,4 +1120,32 @@

- destination: reads-and-writes-overview.md
sources: ['query-data.md']
versions: ['v26.1', 'v26.2']

- destination: delete.md
sources: ['delete-data.md']
versions: ['v26.1', 'v26.2']

- destination: configure-replication-zones.md
sources: ['demo-automatic-cloud-migration.md']
versions: ['v26.1', 'v26.2']

- destination: jsonb.md
sources: ['demo-json-support.md']
versions: ['v26.1', 'v26.2']

- destination: query-spatial-data.md
sources: ['export-spatial-data.md']
versions: ['v26.1', 'v26.2']

- destination: insert.md
sources: ['insert-data.md']
versions: ['v26.1', 'v26.2']

- destination: spatial-data-overview.md
sources: ['spatial-tutorial.md', 'geoserver.md']
versions: ['v26.1', 'v26.2']

- destination: update.md
sources: ['update-data.md']
versions: ['v26.1', 'v26.2']
1 change: 0 additions & 1 deletion src/current/_includes/cockroachcloud/app/see-also-links.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,3 @@ You might also be interested in the following pages:
- [Data Replication]({% link {{site.current_cloud_version}}/demo-data-replication.md %})
- [CockroachDB Resilience]({% link {{site.current_cloud_version}}/demo-cockroachdb-resilience.md %})
- [Automatic Rebalancing]({% link {{site.current_cloud_version}}/demo-automatic-rebalancing.md %})
- [Cross-Cloud Migration]({% link {{site.current_cloud_version}}/demo-automatic-cloud-migration.md %})
1 change: 0 additions & 1 deletion src/current/_includes/v26.1/app/see-also-links.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,3 @@ You might also be interested in the following pages:
- [Data Replication]({% link {{ page.version.version }}/demo-replication-and-rebalancing.md %})
- [CockroachDB Resilience]({% link {{ page.version.version }}/demo-cockroachdb-resilience.md %})
- [Replication & Rebalancing]({% link {{ page.version.version }}/demo-replication-and-rebalancing.md %})
- [Cross-Cloud Migration]({% link {{ page.version.version }}/demo-automatic-cloud-migration.md %})
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
- CockroachDB does not allow inverted indexes with a [`STORING` column]({% link {{ page.version.version }}/create-index.md %}#store-columns). [#88278](https://github.com/cockroachdb/cockroach/issues/88278)
- CockroachDB cannot index-accelerate queries with `@@` predicates when both sides of the operator are variables for `tsvector` and `tsquery` types. [#102731](https://github.com/cockroachdb/cockroach/issues/102731)
- [Left joins]({% link {{ page.version.version }}/joins.md %}#left-outer-joins) and anti joins involving [`JSONB`]({% link {{ page.version.version }}/jsonb.md %}), [`ARRAY`]({% link {{ page.version.version }}/array.md %}), or [spatial-typed]({% link {{ page.version.version }}/export-spatial-data.md %}) columns with a multi-column or [partitioned]({% link {{ page.version.version }}/alter-index.md %}#partition-by) [GIN index](inverted-indexes.html) will not take advantage of the index if the prefix columns of the index are unconstrained, or if they are constrained to multiple, constant values. To work around this limitation, make sure that the prefix columns of the index are either constrained to single constant values, or are part of an equality condition with an input column. [#59649](https://github.com/cockroachdb/cockroach/issues/59649)
- [Left joins]({% link {{ page.version.version }}/joins.md %}#left-outer-joins) and anti joins involving [`JSONB`]({% link {{ page.version.version }}/jsonb.md %}), [`ARRAY`]({% link {{ page.version.version }}/array.md %}), or [spatial-typed]({% link {{ page.version.version }}/query-spatial-data.md %}) columns with a multi-column or [partitioned]({% link {{ page.version.version }}/alter-index.md %}#partition-by) [GIN index](inverted-indexes.html) will not take advantage of the index if the prefix columns of the index are unconstrained, or if they are constrained to multiple, constant values. To work around this limitation, make sure that the prefix columns of the index are either constrained to single constant values, or are part of an equality condition with an input column. [#59649](https://github.com/cockroachdb/cockroach/issues/59649)
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
- The vectorized engine does not support queries containing a join filtered with an [`ON` expression]({% link {{ page.version.version }}/joins.md %}#supported-join-conditions). [#38018](https://github.com/cockroachdb/cockroach/issues/38018)
- The vectorized engine does not support [working with spatial data]({% link {{ page.version.version }}/export-spatial-data.md %}). Queries with [geospatial functions]({% link {{ page.version.version }}/functions-and-operators.md %}#spatial-functions) or [spatial data]({% link {{ page.version.version }}/export-spatial-data.md %}) will revert to the row-oriented execution engine.
- The vectorized engine does not support [working with spatial data]({% link {{ page.version.version }}/query-spatial-data.md %}). Queries with [geospatial functions]({% link {{ page.version.version }}/functions-and-operators.md %}#spatial-functions) or [spatial data]({% link {{ page.version.version }}/query-spatial-data.md %}) will revert to the row-oriented execution engine.
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
- [Replication & Rebalancing]({% link {{ page.version.version }}/demo-replication-and-rebalancing.md %})
- [CockroachDB Resilience]({% link {{ page.version.version }}/demo-cockroachdb-resilience.md %})
- [Low Latency Multi-Region Deployment]({% link {{ page.version.version }}/demo-low-latency-multi-region-deployment.md %})
- [Serializable Transactions]({% link {{ page.version.version }}/demo-serializable.md %})
- [Cross-Cloud Migration]({% link {{ page.version.version }}/demo-automatic-cloud-migration.md %})
- [JSON Support]({% link {{ page.version.version }}/demo-json-support.md %})
- [Serializable Transactions]({% link {{ page.version.version }}/demo-serializable.md %})
Original file line number Diff line number Diff line change
Expand Up @@ -63,12 +63,6 @@
"urls": [
"/${VERSION}/migrate-to-multiregion-sql.html"
]
},
{
"title": "Using GeoServer with CockroachDB",
"urls": [
"/${VERSION}/geoserver.html"
]
}
]
}
Expand Down
42 changes: 0 additions & 42 deletions src/current/_includes/v26.1/sidebar-data/reads-and-writes.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,42 +52,18 @@
"urls": [
"/${VERSION}/query-spatial-data.html"
]
},
{
"title": "Export Spatial Data",
"urls": [
"/${VERSION}/export-spatial-data.html"
]
}
]
},
{
"title": "Write Data",
"items": [
{
"title": "Insert Data",
"urls": [
"/${VERSION}/insert-data.html"
]
},
{
"title": "Update Data",
"urls": [
"/${VERSION}/update-data.html"
]
},
{
"title": "Bulk-update Data",
"urls": [
"/${VERSION}/bulk-update-data.html"
]
},
{
"title": "Delete Data",
"urls": [
"/${VERSION}/delete-data.html"
]
},
{
"title": "Bulk-delete Data",
"urls": [
Expand Down Expand Up @@ -137,24 +113,6 @@
"/${VERSION}/local-testing.html"
]
},
{
"title": "JSON Support",
"urls": [
"/${VERSION}/demo-json-support.html"
]
},
{
"title": "Spatial Data",
"urls": [
"/${VERSION}/spatial-tutorial.html"
]
},
{
"title": "Cross-Cloud Migration",
"urls": [
"/${VERSION}/demo-automatic-cloud-migration.html"
]
},
{
"title": "SQL Playground",
"is_top_level": true,
Expand Down
2 changes: 1 addition & 1 deletion src/current/_includes/v26.1/sql/privileges.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Privilege | Levels | Description
<a id="replicationsource"></a>`REPLICATIONSOURCE` | Table | Grants the ability to run logical data replication from a table on the source cluster. For more details, refer to the [Set Up Logical Data Replication]({% link {{ page.version.version }}/set-up-logical-data-replication.md %}) tutorial.
`RESTORE` | System, Database | Grants the ability to restore [backups]({% link {{ page.version.version }}/backup-and-restore-overview.md %}) at the system or database level. Refer to `RESTORE` [Required privileges]({% link {{ page.version.version }}/restore.md %}#required-privileges) for more details.
`SELECT` | Table, Sequence | Grants the ability to run [selection queries]({% link {{ page.version.version }}/selection-queries.md %}) at the table or sequence level.
`UPDATE` | Table, Sequence | Grants the ability to run [update statements]({% link {{ page.version.version }}/update-data.md %}) at the table or sequence level.
`UPDATE` | Table, Sequence | Grants the ability to run [update statements]({% link {{ page.version.version }}/update.md %}) at the table or sequence level.
`USAGE` | Schema, Sequence, Type | Grants the ability to use [schemas]({% link {{ page.version.version }}/schema-design-overview.md %}), [sequences]({% link {{ page.version.version }}/create-sequence.md %}), or [user-defined types]({% link {{ page.version.version }}/create-type.md %}).
<a id="viewactivity"></a>`VIEWACTIVITY` | System | Grants the ability to view other user's activity statistics of a cluster.
<a id="viewactivityredacted"></a>`VIEWACTIVITYREDACTED` | System | Grants the ability to view other user's activity statistics, but prevents the role from accessing the statement diagnostics bundle in the DB Console, and viewing some columns in introspection queries that contain data about the cluster.
Expand Down
1 change: 0 additions & 1 deletion src/current/_includes/v26.2/app/see-also-links.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,3 @@ You might also be interested in the following pages:
- [Data Replication]({% link {{ page.version.version }}/demo-replication-and-rebalancing.md %})
- [CockroachDB Resilience]({% link {{ page.version.version }}/demo-cockroachdb-resilience.md %})
- [Replication & Rebalancing]({% link {{ page.version.version }}/demo-replication-and-rebalancing.md %})
- [Cross-Cloud Migration]({% link {{ page.version.version }}/demo-automatic-cloud-migration.md %})
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
- CockroachDB does not allow inverted indexes with a [`STORING` column]({% link {{ page.version.version }}/create-index.md %}#store-columns). [#88278](https://github.com/cockroachdb/cockroach/issues/88278)
- CockroachDB cannot index-accelerate queries with `@@` predicates when both sides of the operator are variables for `tsvector` and `tsquery` types. [#102731](https://github.com/cockroachdb/cockroach/issues/102731)
- [Left joins]({% link {{ page.version.version }}/joins.md %}#left-outer-joins) and anti joins involving [`JSONB`]({% link {{ page.version.version }}/jsonb.md %}), [`ARRAY`]({% link {{ page.version.version }}/array.md %}), or [spatial-typed]({% link {{ page.version.version }}/export-spatial-data.md %}) columns with a multi-column or [partitioned]({% link {{ page.version.version }}/alter-index.md %}#partition-by) [GIN index](inverted-indexes.html) will not take advantage of the index if the prefix columns of the index are unconstrained, or if they are constrained to multiple, constant values. To work around this limitation, make sure that the prefix columns of the index are either constrained to single constant values, or are part of an equality condition with an input column. [#59649](https://github.com/cockroachdb/cockroach/issues/59649)
- [Left joins]({% link {{ page.version.version }}/joins.md %}#left-outer-joins) and anti joins involving [`JSONB`]({% link {{ page.version.version }}/jsonb.md %}), [`ARRAY`]({% link {{ page.version.version }}/array.md %}), or [spatial-typed]({% link {{ page.version.version }}/query-spatial-data.md %}) columns with a multi-column or [partitioned]({% link {{ page.version.version }}/alter-index.md %}#partition-by) [GIN index](inverted-indexes.html) will not take advantage of the index if the prefix columns of the index are unconstrained, or if they are constrained to multiple, constant values. To work around this limitation, make sure that the prefix columns of the index are either constrained to single constant values, or are part of an equality condition with an input column. [#59649](https://github.com/cockroachdb/cockroach/issues/59649)
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
- The vectorized engine does not support queries containing a join filtered with an [`ON` expression]({% link {{ page.version.version }}/joins.md %}#supported-join-conditions). [#38018](https://github.com/cockroachdb/cockroach/issues/38018)
- The vectorized engine does not support [working with spatial data]({% link {{ page.version.version }}/export-spatial-data.md %}). Queries with [geospatial functions]({% link {{ page.version.version }}/functions-and-operators.md %}#spatial-functions) or [spatial data]({% link {{ page.version.version }}/export-spatial-data.md %}) will revert to the row-oriented execution engine.
- The vectorized engine does not support [working with spatial data]({% link {{ page.version.version }}/query-spatial-data.md %}). Queries with [geospatial functions]({% link {{ page.version.version }}/functions-and-operators.md %}#spatial-functions) or [spatial data]({% link {{ page.version.version }}/query-spatial-data.md %}) will revert to the row-oriented execution engine.
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
- [Replication & Rebalancing]({% link {{ page.version.version }}/demo-replication-and-rebalancing.md %})
- [CockroachDB Resilience]({% link {{ page.version.version }}/demo-cockroachdb-resilience.md %})
- [Low Latency Multi-Region Deployment]({% link {{ page.version.version }}/demo-low-latency-multi-region-deployment.md %})
- [Serializable Transactions]({% link {{ page.version.version }}/demo-serializable.md %})
- [Cross-Cloud Migration]({% link {{ page.version.version }}/demo-automatic-cloud-migration.md %})
- [JSON Support]({% link {{ page.version.version }}/demo-json-support.md %})
- [Serializable Transactions]({% link {{ page.version.version }}/demo-serializable.md %})
Original file line number Diff line number Diff line change
Expand Up @@ -63,12 +63,6 @@
"urls": [
"/${VERSION}/migrate-to-multiregion-sql.html"
]
},
{
"title": "Using GeoServer with CockroachDB",
"urls": [
"/${VERSION}/geoserver.html"
]
}
]
}
Expand Down
42 changes: 0 additions & 42 deletions src/current/_includes/v26.2/sidebar-data/reads-and-writes.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,42 +52,18 @@
"urls": [
"/${VERSION}/query-spatial-data.html"
]
},
{
"title": "Export Spatial Data",
"urls": [
"/${VERSION}/export-spatial-data.html"
]
}
]
},
{
"title": "Write Data",
"items": [
{
"title": "Insert Data",
"urls": [
"/${VERSION}/insert-data.html"
]
},
{
"title": "Update Data",
"urls": [
"/${VERSION}/update-data.html"
]
},
{
"title": "Bulk-update Data",
"urls": [
"/${VERSION}/bulk-update-data.html"
]
},
{
"title": "Delete Data",
"urls": [
"/${VERSION}/delete-data.html"
]
},
{
"title": "Bulk-delete Data",
"urls": [
Expand Down Expand Up @@ -137,24 +113,6 @@
"/${VERSION}/local-testing.html"
]
},
{
"title": "JSON Support",
"urls": [
"/${VERSION}/demo-json-support.html"
]
},
{
"title": "Spatial Data",
"urls": [
"/${VERSION}/spatial-tutorial.html"
]
},
{
"title": "Cross-Cloud Migration",
"urls": [
"/${VERSION}/demo-automatic-cloud-migration.html"
]
},
{
"title": "SQL Playground",
"is_top_level": true,
Expand Down
2 changes: 1 addition & 1 deletion src/current/_includes/v26.2/sql/privileges.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Privilege | Levels | Description
<a id="replicationsource"></a>`REPLICATIONSOURCE` | Table | Grants the ability to run logical data replication from a table on the source cluster. For more details, refer to the [Set Up Logical Data Replication]({% link {{ page.version.version }}/set-up-logical-data-replication.md %}) tutorial.
`RESTORE` | System, Database | Grants the ability to restore [backups]({% link {{ page.version.version }}/backup-and-restore-overview.md %}) at the system or database level. Refer to `RESTORE` [Required privileges]({% link {{ page.version.version }}/restore.md %}#required-privileges) for more details.
`SELECT` | Table, Sequence | Grants the ability to run [selection queries]({% link {{ page.version.version }}/selection-queries.md %}) at the table or sequence level.
`UPDATE` | Table, Sequence | Grants the ability to run [update statements]({% link {{ page.version.version }}/update-data.md %}) at the table or sequence level.
`UPDATE` | Table, Sequence | Grants the ability to run [update statements]({% link {{ page.version.version }}/update.md %}) at the table or sequence level.
`USAGE` | Schema, Sequence, Type | Grants the ability to use [schemas]({% link {{ page.version.version }}/schema-design-overview.md %}), [sequences]({% link {{ page.version.version }}/create-sequence.md %}), or [user-defined types]({% link {{ page.version.version }}/create-type.md %}).
<a id="viewactivity"></a>`VIEWACTIVITY` | System | Grants the ability to view other user's activity statistics of a cluster.
<a id="viewactivityredacted"></a>`VIEWACTIVITYREDACTED` | System | Grants the ability to view other user's activity statistics, but prevents the role from accessing the statement diagnostics bundle in the DB Console, and viewing some columns in introspection queries that contain data about the cluster.
Expand Down
2 changes: 1 addition & 1 deletion src/current/v26.1/admission-control.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Almost all database operations that use CPU or perform storage IO are controlled
- [General SQL queries]({% link {{ page.version.version }}/selection-queries.md %}) have their CPU usage subject to admission control, as well as storage IO for writes to [leaseholder replicas]({% link {{ page.version.version }}/architecture/replication-layer.md %}#leases) and [follower replicas](#replication-admission-control).
- [Bulk data imports]({% link {{ page.version.version }}/import-into.md %}).
- [`COPY`]({% link {{ page.version.version }}/copy.md %}) statements.
- [Deletes]({% link {{ page.version.version }}/delete-data.md %}) (including deletes initiated by [row-level TTL jobs]({% link {{ page.version.version }}/row-level-ttl.md %}); the [selection queries]({% link {{ page.version.version }}/selection-queries.md %}) performed by TTL jobs are also subject to CPU admission control).
- [Deletes]({% link {{ page.version.version }}/delete.md %}) (including deletes initiated by [row-level TTL jobs]({% link {{ page.version.version }}/row-level-ttl.md %}); the [selection queries]({% link {{ page.version.version }}/selection-queries.md %}) performed by TTL jobs are also subject to CPU admission control).
- [Backups]({% link {{ page.version.version }}/backup-and-restore-overview.md %}).
- [Restore]({% link {{ page.version.version }}/restore.md %}) operations, including [full cluster]({% link {{ page.version.version }}/restore.md %}#full-cluster), [database]({% link {{ page.version.version }}/restore.md %}#databases), and [table]({% link {{ page.version.version }}/restore.md %}#tables) restores.
- [Schema changes]({% link {{ page.version.version }}/online-schema-changes.md %}), including index and column backfills (on both the [leaseholder replica]({% link {{ page.version.version }}/architecture/replication-layer.md %}#leases) and [follower replicas]({% link {{ page.version.version }}/architecture/replication-layer.md %}#raft)).
Expand Down
Loading
Loading