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