We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1fe3774 + 9da707a commit 25ce571Copy full SHA for 25ce571
src/CacheKey.php
@@ -85,6 +85,10 @@ protected function getColumnClauses(array $where) : string
85
$where["first"] = $this->expressionToString($where["first"]);
86
}
87
88
+ if ($where["second"] instanceof Expression) {
89
+ $where["second"] = $this->expressionToString($where["second"]);
90
+ }
91
+
92
return "-{$where["boolean"]}_{$where["first"]}_{$where["operator"]}_{$where["second"]}";
93
94
0 commit comments