Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve ordering of SQL support overview #19834

Merged
merged 1 commit into from
Nov 29, 2023
Merged
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
3 changes: 3 additions & 0 deletions docs/src/main/sphinx/admin/properties-catalog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Catalog management properties

The following properties are used to configure catalog management with further
controls for dynamic catalog management.

(prop-catalog-management)=
## `catalog.management`

Expand Down
29 changes: 11 additions & 18 deletions docs/src/main/sphinx/language/sql-support.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ Details of the support for specific statements is available with the
documentation for each connector.

(sql-globally-available)=

## Globally available statements

The following statements are implemented in the core engine and available with
Expand All @@ -48,7 +47,6 @@ any connector:
- {doc}`/sql/values`

(sql-read-operations)=

## Read operations

The following statements provide read access to data and meta data exposed by a
Expand All @@ -69,15 +67,13 @@ connector accessing a data source. They are supported by all connectors:
- {doc}`/sql/show-stats`

(sql-write-operations)=

## Write operations

The following statements provide write access to data and meta data exposed
by a connector accessing a data source. Availability varies widely from
connector to connector:

(sql-data-management)=

### Data management

- {doc}`/sql/insert`
Expand All @@ -86,24 +82,16 @@ connector to connector:
- {doc}`/sql/truncate`
- {doc}`/sql/merge`

(sql-materialized-view-management)=

### Materialized view management

- {doc}`/sql/create-materialized-view`
- {doc}`/sql/alter-materialized-view`
- {doc}`/sql/drop-materialized-view`
- {doc}`/sql/refresh-materialized-view`

(sql-catalog-management)=

### Catalog management

The following statements are used to [manage dynamic
catalogs](/admin/properties-catalog):

- {doc}`/sql/create-catalog`
- {doc}`/sql/drop-catalog`

(sql-schema-table-management)=

### Schema and table management

- {doc}`/sql/create-table`
Expand All @@ -116,13 +104,20 @@ connector to connector:
- {doc}`/sql/comment`

(sql-view-management)=

### View management

- {doc}`/sql/create-view`
- {doc}`/sql/drop-view`
- {doc}`/sql/alter-view`

(sql-materialized-view-management)=
### Materialized view management

- {doc}`/sql/create-materialized-view`
- {doc}`/sql/alter-materialized-view`
- {doc}`/sql/drop-materialized-view`
- {doc}`/sql/refresh-materialized-view`

(sql-routine-management)=
### Routine management

Expand All @@ -133,7 +128,6 @@ The following statements are used to manage [catalog routines](routine-catalog):
- [](/sql/show-functions)

(sql-security-operations)=

## Security operations

The following statements provide security-related operations to security
Expand All @@ -156,7 +150,6 @@ Grants management:
- {doc}`/sql/revoke`

(sql-transactions)=

## Transactions

The following statements manage transactions. Most connectors do not support
Expand Down
Loading