Skip to content

Commit

Permalink
Update docs + Try to stabilize test results, pt. II
Browse files Browse the repository at this point in the history
  • Loading branch information
rschu1ze committed Nov 13, 2023
1 parent bea529c commit 7864df4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions docs/en/operations/settings/settings.md
Expand Up @@ -1657,14 +1657,14 @@ Possible values:

Default value: `1`.

## query_cache_non_deterministic_function_handling {#query-cache-nondeterministic-function-handling}
## query_cache_nondeterministic_function_handling {#query-cache-nondeterministic-function-handling}

Controls how the [query cache](../query-cache.md) handles `SELECT` queries with non-deterministic functions like `rand()` or `now()`.

Possible values:

- `'throw'` - Throw an exception.
- `'save'` - Cache the query result even if it is non-deterministic.
- `'throw'` - Throw an exception and don't cache the query result.
- `'save'` - Cache the query result.
- `'ignore'` - Don't cache the query result and don't throw an exception.

Default value: `throw`.
Expand Down
@@ -1,5 +1,5 @@
-- Tag no-parallel: Messes with internal cache
-- Tags: no-parallel
-- Tag no-parallel: Messes with internal cache

SYSTEM DROP QUERY CACHE;

Expand Down

0 comments on commit 7864df4

Please sign in to comment.