From 7dd782baef16d3a97d0f5c981e21d67319c61404 Mon Sep 17 00:00:00 2001 From: Philip O'Toole Date: Wed, 28 Sep 2022 19:51:38 -0400 Subject: [PATCH] Update NON_DETERMINISTIC_FUNCTIONS.md --- DOC/NON_DETERMINISTIC_FUNCTIONS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DOC/NON_DETERMINISTIC_FUNCTIONS.md b/DOC/NON_DETERMINISTIC_FUNCTIONS.md index 6e8dcde3..31cad227 100644 --- a/DOC/NON_DETERMINISTIC_FUNCTIONS.md +++ b/DOC/NON_DETERMINISTIC_FUNCTIONS.md @@ -52,7 +52,7 @@ curl -G 'localhost:4001/db/query?level=strong' --data-urlencode 'q=SELECT * FROM ``` ### Date and time functions -rqlite does not yet rewrite [SQLite date and time functions](https://www.sqlite.org/lang_datefunc.html) that are non-deterministic in nature. A example of such a function is +rqlite does not yet rewrite [SQLite date and time functions](https://www.sqlite.org/lang_datefunc.html) that are non-deterministic in nature, but will in an upcoming release. A example of a non-deterministic time function is `INSERT INTO datetime_text (d1, d2) VALUES(datetime('now'),datetime('now', 'localtime'))`