You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
['select * from "example" where "str" ilike ? or "str" ilike ?', 'select * from "example" where "str" like ? or "str" like ?'],
102
+
['select * from "example" where "str"::text ilike ? or "str"::text ilike ?', 'select * from "example" where "str"::text like ? or "str"::text like ?'],
103
103
array_column($queries, 'query'),
104
104
);
105
105
$this->assertEquals(
@@ -172,6 +172,24 @@ public function testOrWhereNotBoolean(): void
172
172
);
173
173
}
174
174
175
+
publicfunctiontestOrWhereNotLike(): void
176
+
{
177
+
$this->getConnection()->unprepared('CREATE TABLE example (str text)');
['select * from "example" where "str"::text not ilike ? or "str"::text not ilike ?', 'select * from "example" where "str"::text not like ? or "str"::text not like ?'],
0 commit comments