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
I have a project running version 14.44.1 where filters defined by Like::class work fine.
This is the mySQL query returned (doble quote added by me for clear code, in origin returned as single quote):
select count(*) as aggregate from "projects" where "title" like "%acq%"
On another project just updated to 14.45.1 filters stop working.
This is the mySQL query returned (doble quote added by me for clear code, in origin returned as single quote):
select count(*) as aggregate from "projects" where "title" like "acq"
in the new version Like filter lost % pre and after searched string.
The text was updated successfully, but these errors were encountered:
I have a project running version 14.44.1 where filters defined by
Like::class
work fine.This is the mySQL query returned (doble quote added by me for clear code, in origin returned as single quote):
select count(*) as aggregate from "projects" where "title" like "%acq%"
On another project just updated to 14.45.1 filters stop working.
This is the mySQL query returned (doble quote added by me for clear code, in origin returned as single quote):
select count(*) as aggregate from "projects" where "title" like "acq"
in the new version Like filter lost
%
pre and after searched string.The text was updated successfully, but these errors were encountered: