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

Update queryType list in selector rules docs #23635

Merged
merged 2 commits into from
Oct 2, 2024
Merged
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
28 changes: 19 additions & 9 deletions docs/src/main/sphinx/admin/resource-groups.md
Original file line number Diff line number Diff line change
Expand Up @@ -171,15 +171,25 @@ documentation](https://docs.oracle.com/en/java/javase/22/docs/api/java.base/java

- `queryType` (optional): string to match against the type of the query submitted:

- `SELECT`: `SELECT` queries.
- `EXPLAIN`: `EXPLAIN` queries (but not `EXPLAIN ANALYZE`).
- `DESCRIBE`: `DESCRIBE`, `DESCRIBE INPUT`, `DESCRIBE OUTPUT`, and `SHOW` queries.
- `INSERT`: `INSERT`, `CREATE TABLE AS`, and `REFRESH MATERIALIZED VIEW` queries.
- `UPDATE`: `UPDATE` queries.
- `DELETE`: `DELETE` queries.
- `ANALYZE`: `ANALYZE` queries.
- `DATA_DEFINITION`: Queries that alter/create/drop the metadata of schemas/tables/views,
and that manage prepared statements, privileges, sessions, and transactions.
- `SELECT`: [SELECT](/sql/select) queries.
- `EXPLAIN`: [EXPLAIN](/sql/explain) queries, but not [EXPLAIN
ANALYZE](/sql/explain-analyze) queries.
- `DESCRIBE`: [DESCRIBE](/sql/describe), [DESCRIBE
INPUT](/sql/describe-input), [DESCRIBE OUTPUT](/sql/describe-output), and
`SHOW` queries such as [SHOW CATALOGS](/sql/show-catalogs), [SHOW
SCHEMAS](/sql/show-schemas), and [SHOW TABLES](/sql/show-tables).
- `INSERT`: [INSERT](/sql/insert), [CREATE TABLE AS](/sql/create-table-as),
and [REFRESH MATERIALIZED VIEW](/sql/refresh-materialized-view) queries.
- `UPDATE`: [UPDATE](/sql/update) queries.
- `MERGE`: [MERGE](/sql/merge) queries.
- `DELETE`: [DELETE](/sql/delete) queries.
- `ANALYZE`: [ANALYZE](/sql/analyze) queries.
- `DATA_DEFINITION`: Queries that affect the data definition. These include
`CREATE`, `ALTER`, and `DROP` statements for schemas, tables, views, and
materialized views, as well as statements that manage prepared statements,
privileges, sessions, and transactions.
- `ALTER_TABLE_EXECUTE`: Queries that execute table procedures with [ALTER
TABLE EXECUTE](alter-table-execute).

- `clientTags` (optional): list of tags. To match, every tag in this list must be in the list of
client-provided tags associated with the query.
Expand Down