SQLite does not support the ilike operator. We want Flop to handle this properly during operator validation. There are a few different options:
- add configuration to disable operators completely
- add configuration to set the allowed operators per primitive ecto type
- add configuration to map operators to other operators; this would allow you to map
ilike and =~ to like
- ?
SQLite does not support the
ilikeoperator. We want Flop to handle this properly during operator validation. There are a few different options:ilikeand=~tolike