Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Backport] Fulltext replacement with like condition #16827

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,15 @@ private function addFilterGroupToCollection(
if (!$isApplied) {
$condition = $filter->getConditionType() ? $filter->getConditionType() : 'eq';
$fields[] = $this->getFieldMapping($filter->getField());

if ($condition === 'fulltext') {
// NOTE: This is not a fulltext search, but the best way to search something when
// a SearchCriteria with "fulltext" condition is provided over a MySQL table
// (see https://github.com/magento-engcom/msi/issues/1221)
$condition = 'like';
$filter->setValue('%' . $filter->getValue() . '%');
}

$conditions[] = [$condition => $filter->getValue()];
}
}
Expand Down