This is an automated email from the ASF dual-hosted git repository.
mck pushed a commit to branch cassandra-5.0
in repository https://gitbox.apache.org/repos/asf/cassandra.git
The following commit(s) were added to refs/heads/cassandra-5.0 by this push:
new b22c0b1317 Fix reference nav section in in-tree docs
b22c0b1317 is described below
commit b22c0b1317c010227859cc1cd371e3cd40167ff6
Author: mck <[email protected]>
AuthorDate: Tue Mar 18 11:34:14 2025 +0100
Fix reference nav section in in-tree docs
patch by Mick Semb Wever; reviewed by Štefan Miklošovič for CASSANDRA-20451
---
doc/modules/cassandra/nav.adoc | 5 +-
.../pages/reference/cql-commands/commands-toc.adoc | 82 +++++++++++-----------
doc/modules/cassandra/pages/reference/index.adoc | 5 +-
3 files changed, 49 insertions(+), 43 deletions(-)
diff --git a/doc/modules/cassandra/nav.adoc b/doc/modules/cassandra/nav.adoc
index 6a4c7a7a2f..7c1a02cfaa 100644
--- a/doc/modules/cassandra/nav.adoc
+++ b/doc/modules/cassandra/nav.adoc
@@ -118,8 +118,11 @@
** xref:reference/index.adoc[]
*** xref:reference/cql-commands/commands-toc.adoc[CQL commands]
+*** xref:developing/cql/cql_singlefile.html[CQL specification]
*** xref:reference/java17.adoc[Java 17]
-*** xref:reference/static.adoc[Static columns]
+*** xref:reference/native-protocol.adoc[Native Protocol specification]
*** xref:reference/sai-virtual-table-indexes.adoc[SAI virtual table]
+*** xref:reference/static.adoc[Static columns]
+*** xref:reference/vector-data-type.adoc[Vector data type]
** xref:integrating/plugins/index.adoc[]
\ No newline at end of file
diff --git
a/doc/modules/cassandra/pages/reference/cql-commands/commands-toc.adoc
b/doc/modules/cassandra/pages/reference/cql-commands/commands-toc.adoc
index e1fe0fe0fd..89ec717876 100644
--- a/doc/modules/cassandra/pages/reference/cql-commands/commands-toc.adoc
+++ b/doc/modules/cassandra/pages/reference/cql-commands/commands-toc.adoc
@@ -4,123 +4,123 @@
This section describes the Cassandra Query Language (CQL) commands supported
by the {product} database.
'''
-xref:cql-commands/alter-keyspace.adoc[ALTER KEYSPACE] ::
+xref:reference/cql-commands/alter-keyspace.adoc[ALTER KEYSPACE] ::
Changes keyspace replication strategy and enables or disables commit log.
-xref:cql-commands/alter-materialized-view.adoc[ALTER MATERIALIZED VIEW] ::
+xref:reference/cql-commands/alter-materialized-view.adoc[ALTER MATERIALIZED
VIEW] ::
Changes the table properties of a materialized view.
-xref:cql-commands/alter-role.adoc[ALTER ROLE] ::
+xref:reference/cql-commands/alter-role.adoc[ALTER ROLE] ::
Changes password and sets superuser or login options.
-xref:cql-commands/alter-table.adoc[ALTER TABLE] ::
+xref:reference/cql-commands/alter-table.adoc[ALTER TABLE] ::
Modifies the columns and properties of a table, or modify
-xref:cql-commands/alter-type.adoc[ALTER TYPE] ::
+xref:reference/cql-commands/alter-type.adoc[ALTER TYPE] ::
Modifies an existing user-defined type (UDT).
-xref:reference:cql-commands/alter-user.adoc[ALTER USER (Deprecated)] ::
+xref:reference/cql-commands/alter-user.adoc[ALTER USER (Deprecated)] ::
Deprecated. Alter existing user options.
-xref:reference:cql-commands/batch.adoc[BATCH] ::
+xref:reference/cql-commands/batch.adoc[BATCH] ::
Applies multiple data modification language (DML) statements with atomicity
and/or in isolation.
-xref:reference:cql-commands/create-aggregate.adoc[CREATE AGGREGATE] ::
+xref:reference/cql-commands/create-aggregate.adoc[CREATE AGGREGATE] ::
Defines a user-defined aggregate.
-xref:reference:cql-commands/create-custom-index.adoc[CREATE CUSTOM INDEX] ::
+xref:reference/cql-commands/create-custom-index.adoc[CREATE CUSTOM INDEX] ::
Creates a storage-attached index.
-xref:reference:cql-commands/create-function.adoc[CREATE FUNCTION] ::
+xref:reference/cql-commands/create-function.adoc[CREATE FUNCTION] ::
Creates custom function to execute user provided code.
-xref:reference:cql-commands/create-index.adoc[CREATE INDEX] ::
+xref:reference/cql-commands/create-index.adoc[CREATE INDEX] ::
Defines a new index for a single column of a table.
-xref:reference:cql-commands/create-keyspace.adoc[CREATE KEYSPACE] ::
+xref:reference/cql-commands/create-keyspace.adoc[CREATE KEYSPACE] ::
-xref:reference:cql-commands/create-materialized-view.adoc[CREATE MATERIALIZED
VIEW] ::
+xref:reference/cql-commands/create-materialized-view.adoc[CREATE MATERIALIZED
VIEW] ::
Optimizes read requests and eliminates the need for multiple write requests by
duplicating data from a base table.
-xref:reference:cql-commands/create-role.adoc[CREATE ROLE] ::
+xref:reference/cql-commands/create-role.adoc[CREATE ROLE] ::
Creates a cluster wide database object used for access control.
-xref:reference:cql-commands/create-table.adoc[CREATE TABLE] ::
+xref:reference/cql-commands/create-table.adoc[CREATE TABLE] ::
Creates a new table.
-xref:reference:cql-commands/create-type.adoc[CREATE TYPE] ::
+xref:reference/cql-commands/create-type.adoc[CREATE TYPE] ::
Creates a custom data type in the keyspace that contains one or more fields of
related information.
-xref:reference:cql-commands/create-user.adoc[CREATE USER (Deprecated)] ::
+xref:reference/cql-commands/create-user.adoc[CREATE USER (Deprecated)] ::
Deprecated. Creates a new user.
-xref:reference:cql-commands/delete.adoc[DELETE] ::
+xref:reference/cql-commands/delete.adoc[DELETE] ::
Removes data from one or more columns or removes the entire row
-xref:reference:cql-commands/drop-aggregate.adoc[DROP AGGREGATE] ::
+xref:reference/cql-commands/drop-aggregate.adoc[DROP AGGREGATE] ::
Deletes a user-defined aggregate from a keyspace.
-xref:reference:cql-commands/drop-function.adoc[DROP FUNCTION] ::
+xref:reference/cql-commands/drop-function.adoc[DROP FUNCTION] ::
Deletes a user-defined function (UDF) from a keyspace.
-xref:reference:cql-commands/drop-index.adoc[DROP INDEX] ::
+xref:reference/cql-commands/drop-index.adoc[DROP INDEX] ::
Removes an index from a table.
-xref:reference:cql-commands/drop-keyspace.adoc[DROP KEYSPACE] ::
+xref:reference/cql-commands/drop-keyspace.adoc[DROP KEYSPACE] ::
Removes the keyspace.
-xref:reference:cql-commands/drop-materialized-view.adoc[DROP MATERIALIZED
VIEW] ::
+xref:reference/cql-commands/drop-materialized-view.adoc[DROP MATERIALIZED
VIEW] ::
Removes the named materialized view.
-xref:reference:cql-commands/drop-role.adoc[DROP ROLE] ::
+xref:reference/cql-commands/drop-role.adoc[DROP ROLE] ::
Removes a role.
-xref:reference:cql-commands/drop-table.adoc[DROP TABLE] ::
+xref:reference/cql-commands/drop-table.adoc[DROP TABLE] ::
Removes the table.
-xref:reference:cql-commands/drop-type.adoc[DROP TYPE] ::
+xref:reference/cql-commands/drop-type.adoc[DROP TYPE] ::
Drop a user-defined type.
-xref:reference:cql-commands/drop-user.adoc[DROP USER (Deprecated)] ::
+xref:reference/cql-commands/drop-user.adoc[DROP USER (Deprecated)] ::
Removes a user.
-xref:reference:cql-commands/grant.adoc[GRANT] ::
+xref:reference/cql-commands/grant.adoc[GRANT] ::
Allow access to database resources.
-xref:reference:cql-commands/insert.adoc[INSERT] ::
+xref:reference/cql-commands/insert.adoc[INSERT] ::
Inserts an entire row or upserts data into existing rows.
-xref:reference:cql-commands/list-permissions.adoc[LIST PERMISSIONS] ::
+xref:reference/cql-commands/list-permissions.adoc[LIST PERMISSIONS] ::
Lists permissions on resources.
-xref:reference:cql-commands/list-roles.adoc[LIST ROLES] ::
+xref:reference/cql-commands/list-roles.adoc[LIST ROLES] ::
Lists roles and shows superuser and login status.
-xref:reference:cql-commands/list-users.adoc[LIST USERS (Deprecated)] ::
+xref:reference/cql-commands/list-users.adoc[LIST USERS (Deprecated)] ::
Lists existing internal authentication users and their superuser status.
-xref:reference:cql-commands/restrict.adoc[RESTRICT] ::
+xref:reference/cql-commands/restrict.adoc[RESTRICT] ::
Denies the permission on a resource, even if the role is directly granted or
inherits permissions.
-xref:reference:cql-commands/restrict-rows.adoc[RESTRICT ROWS] ::
+xref:reference/cql-commands/restrict-rows.adoc[RESTRICT ROWS] ::
Configures the column used for row-level access control.
-xref:reference:cql-commands/revoke.adoc[REVOKE] ::
+xref:reference/cql-commands/revoke.adoc[REVOKE] ::
Removes privileges on database objects from roles.
-xref:reference:cql-commands/select.adoc[SELECT] ::
+xref:reference/cql-commands/select.adoc[SELECT] ::
Returns data from a table.
-xref:reference:cql-commands/truncate.adoc[TRUNCATE] ::
+xref:reference/cql-commands/truncate.adoc[TRUNCATE] ::
Removes all data from a table.
-xref:reference:cql-commands/unrestrict.adoc[UNRESTRICT] ::
+xref:reference/cql-commands/unrestrict.adoc[UNRESTRICT] ::
Removes a restriction from a role.
-xref:reference:cql-commands/unrestrict-rows.adoc[UNRESTRICT ROWS] ::
+xref:reference/cql-commands/unrestrict-rows.adoc[UNRESTRICT ROWS] ::
Removes the column definition for row-level access control.
-xref:reference:cql-commands/update.adoc[UPDATE] ::
+xref:reference/cql-commands/update.adoc[UPDATE] ::
Modifies one or more column values to a row in a table.
-xref:reference:cql-commands/use.adoc[USE] ::
+xref:reference/cql-commands/use.adoc[USE] ::
Selects the keyspace for the current client session.
\ No newline at end of file
diff --git a/doc/modules/cassandra/pages/reference/index.adoc
b/doc/modules/cassandra/pages/reference/index.adoc
index 6c61a37925..8e09e8f8d8 100644
--- a/doc/modules/cassandra/pages/reference/index.adoc
+++ b/doc/modules/cassandra/pages/reference/index.adoc
@@ -1,6 +1,9 @@
= Reference
* xref:reference/cql-commands/commands-toc.adoc[CQL commands]
+* xref:developing/cql/cql_singlefile.html[CQL specification]
* xref:reference/java17.adoc[Java 17]
+* xref:reference/native-protocol.adoc[Native Protocol specification]
+* xref:reference/sai-virtual-table-indexes.adoc[SAI virtual table]
* xref:reference/static.adoc[Static columns]
-* xref:reference/sai-virtual-table-indexes.adoc[SAI virtual table]
\ No newline at end of file
+* xref:reference/vector-data-type.adoc[Vector data type]
\ No newline at end of file
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]