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
Describe the problem you're proposing to solve
When using Kaffy on a project with a repo using the MySQL database drivers, everything related to schemas breaks, as MySQL does not support ILIKE, only LIKE.
Describe the solution you'd like
Depending on the repository database driver, LIKE (MySQL) or ILIKE (PostgreSQL) should be used.
Describe alternatives you've considered
none
Additional context
I forked kaffy and did the change manually for testing in this commit and it works fine. ILIKE is only used in this one place.
I could submit a PR for a dynamic approach based on the repository driver but I think this would collide with #180. Guess it would be best to complete that PR first :)
The text was updated successfully, but these errors were encountered:
Describe the problem you're proposing to solve
When using Kaffy on a project with a repo using the MySQL database drivers, everything related to schemas breaks, as MySQL does not support
ILIKE
, onlyLIKE
.Describe the solution you'd like
Depending on the repository database driver,
LIKE
(MySQL) orILIKE
(PostgreSQL) should be used.Describe alternatives you've considered
none
Additional context
I forked kaffy and did the change manually for testing in this commit and it works fine.
ILIKE
is only used in this one place.I could submit a PR for a dynamic approach based on the repository driver but I think this would collide with #180. Guess it would be best to complete that PR first :)
The text was updated successfully, but these errors were encountered: