From e1d9985ec8f13eb5f84ab27a83ca31a91120b1ef Mon Sep 17 00:00:00 2001 From: Clemens Schwaighofer Date: Mon, 20 Jan 2025 10:50:07 +0900 Subject: [PATCH] DB IO cache reset query not found is warning and not error --- src/DB/IO.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/DB/IO.php b/src/DB/IO.php index a0ae64d..038f32d 100644 --- a/src/DB/IO.php +++ b/src/DB/IO.php @@ -2946,7 +2946,7 @@ class IO $query_hash = $this->dbGetQueryHash($query, $params); // clears cache for this query if (empty($this->cursor_ext[$query_hash]['query'])) { - $this->__dbError(18, context: [ + $this->__dbWarning(18, context: [ 'query' => $query, 'params' => $params, 'hash' => $query_hash,