action-scheduler icon indicating copy to clipboard operation
action-scheduler copied to clipboard

Improve search doing LIKE by word rather than by phrases.

Open ovidiul opened this issue 3 years ago • 0 comments

Moving a code TODO comment from ActionScheduler_Abstract_ListTable.php as an open issue.

It seems that the get_items_query_search method could make use of an improvement to search with LIKE by words, rather than by phrase.

This could complete the search with:

SELECT ... WHERE column LIKE '%this%is%my%phrase%'

as opposed to

SELECT ... WHERE column LIKE '%this is my phrase%'

ovidiul avatar Sep 17 '21 07:09 ovidiul