From 102f485759b92437c655e025da0a555ec8044c3d Mon Sep 17 00:00:00 2001 From: DDEV User Date: Mon, 18 Mar 2024 11:24:45 +0000 Subject: [PATCH] fix another bug --- src/Util/DatabaseUtil/CreateWhereForSerializedBlobResult.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Util/DatabaseUtil/CreateWhereForSerializedBlobResult.php b/src/Util/DatabaseUtil/CreateWhereForSerializedBlobResult.php index dada3e99..d72706e3 100644 --- a/src/Util/DatabaseUtil/CreateWhereForSerializedBlobResult.php +++ b/src/Util/DatabaseUtil/CreateWhereForSerializedBlobResult.php @@ -15,7 +15,7 @@ public function __construct( */ public function createInlineAndWhere(): string { - return '('.$this->field.' REGEXP (\''.implode("'\) OR ".$this->field.' REGEXP (\'', $this->getValueList()).'\'))'; + return '('.$this->field.' REGEXP (\''.implode('\') AND '.$this->field.' REGEXP (\'', $this->getValueList()).'\'))'; } /**