Update NON_DETERMINISTIC_FUNCTIONS.md

This commit is contained in:
Philip O'Toole
2022-09-04 17:53:39 -04:00
committed by GitHub
parent e3ff9879f2
commit 2eb9e6eb21

View File

@@ -30,7 +30,7 @@ Any SQL statement containing `RANDOM()` is rewritten under any of the following
- the statement is part of a read-request i.e. the request is sent to the `/db/execute` HTTP API **and** the read-request is made with _strong_ read consistency.
- `RANDOM()` is not used as an `ORDER BY` qualifier.
`RANDOM()` is replaced with a random integer between -9223372036854775808 and +9223372036854775807.
`RANDOM()` is replaced with a random integer between -9223372036854775808 and +9223372036854775807 by the rqlite node that first receives the SQL statement.
#### Examples
```bash