-
Notifications
You must be signed in to change notification settings - Fork 203
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
EZP-29984: Fix LIKE support for * as wildcard across engines, deprecate % usage #2517
Conversation
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
Review notes:
|
This comment has been minimized.
This comment has been minimized.
...Core/Search/Legacy/Content/Common/Gateway/CriterionHandler/FieldValue/Handler/Collection.php
Outdated
Show resolved
Hide resolved
@@ -205,15 +205,16 @@ protected function checkValueStructure(BaseValue $value) | |||
|
|||
/** | |||
* Returns information for FieldValue->$sortKey relevant to the field type. | |||
* For this FieldType, the related object's name is returned. | |||
* | |||
* For this FieldType, the related object's name is returned, separated by ",". |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it should be something like:
For this FieldType, the related objects IDs are returned, separated by ",".
, shouldn't it?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes
This reverts commit e5131cf.
Merged to moved forward on ezsystems/ezplatform-solr-search-engine#128 |
Port over logic from: ezsystems/ezpublish-kernel#2517
Ports over fixes for: - EZP-29984: Fix LIKE support for * as wildcard across engines, deprecate % usage - ezsystems/ezpublish-kernel#2517 Which also happens to align RichText with how XmlText had been fixed for: - "Creating paragraph longer than 32766 bytes in RichText Editor will fail with Solr Error" - https://jira.ez.no/browse/EZP-29958
Ports over fixes for: - EZP-29984: Fix LIKE support for * as wildcard across engines, deprecate % usage - ezsystems/ezpublish-kernel#2517 Which also happens to align RichText with how XmlText had been fixed for: - "Creating paragraph longer than 32766 bytes in RichText Editor will fail with Solr Error" - https://jira.ez.no/browse/EZP-29958
Ports over fixes for: - EZP-29984: Fix LIKE support for * as wildcard across engines, deprecate % usage - ezsystems/ezpublish-kernel#2517 Which also happens to align RichText with how XmlText had been fixed for: - "Creating paragraph longer than 32766 bytes in RichText Editor will fail with Solr Error" - https://jira.ez.no/browse/EZP-29958
6.13
and upDoes:
*
as wildcard in Field criterion value%
for this when using LegacySearchEngineAuthor, RelationList and RichText
FieldTypes when using LegacySearchEngineTODO:
$ composer fix-cs
).