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.
1 parent 57a1b08 commit db0675bCopy full SHA for db0675b
src/CacheKey.php
@@ -80,7 +80,10 @@ protected function getColumnClauses(array $where) : string
80
if ($where["type"] !== "Column") {
81
return "";
82
}
83
-
+ if ($where["first"] instanceof Expression) {
84
+ $where["first"] = $this->expressionToString($where["first"]);
85
+ }
86
+
87
return "-{$where["boolean"]}_{$where["first"]}_{$where["operator"]}_{$where["second"]}";
88
89
0 commit comments