Skip to content

Commit

Permalink
Update queryType list in selector rules docs
Browse files Browse the repository at this point in the history
  • Loading branch information
blvckcoffee committed Oct 1, 2024
1 parent b43e2a3 commit 01b4a52
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions docs/src/main/sphinx/admin/resource-groups.md
Original file line number Diff line number Diff line change
Expand Up @@ -171,15 +171,18 @@ 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.
- `SELECT`: [SELECT](/sql/select) queries.
- `EXPLAIN`: [EXPLAIN](/sql/explain) queries (but not [EXPLAIN ANALYZE](/sql/explain-analyze)).
- `DESCRIBE`: [DESCRIBE](/sql/describe), [DESCRIBE INPUT](/sql/describe-input), [DESCRIBE OUTPUT](/sql/describe-output), and `SHOW` queries.
- `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.
- `DELETE`: [DELETE](/sql/delete) queries.
- `ANALYZE`: [ANALYZE](/sql/analyze) queries.
- `DATA_DEFINITION`: Queries that alter/create/drop the metadata of schemas/tables/views,
and that manage prepared statements, privileges, sessions, and transactions.
- `ALTER_TABLE_EXECUTE`: Queries that execute table procedures with [ALTER
TABLE EXECUTE](alter-table-execute).
- `MERGE`: [MERGE](/sql/merge) queries.

- `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

0 comments on commit 01b4a52

Please sign in to comment.