RESTful-Drupal / restful

RESTful best practices for Drupal
https://drupal.org/project/restful
418 stars 173 forks source link

Convert CONTAINS and STARTS_WITH operators to mysql's LIKE #1062

Closed bitamar closed 1 year ago

bitamar commented 4 years ago

Currently RestfulDataProviderDbQuery::queryForListFilter() is passing CONTAINS and STARTS_WITH operators to the query, which isn't valid mysql. This PR converts both operators to LIKE condition.