You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When Using Contains Method, value format is hardcoded and ' - is skipped with function ConvertedQuery:extractFromStringValue(String) which is causing inconsistent search, without warning or error.
Value from contains is not trimmed or checked for '.
contains(Name,'Test') -> Name Like '%Test%'
contains(Name, 'Test') -> Name Like'%'Test%' (space after ',' )
contains(Name,Test) -> Name Like '%es%'
contains(Name, Test) -> Name Like '%Tes%' (space after ',' )
The text was updated successfully, but these errors were encountered:
When Using Contains Method, value format is hardcoded and ' - is skipped with function ConvertedQuery:extractFromStringValue(String) which is causing inconsistent search, without warning or error.
Value from contains is not trimmed or checked for '.
contains(Name,'Test') -> Name Like '%Test%'
contains(Name, 'Test') -> Name Like'%'Test%' (space after ',' )
contains(Name,Test) -> Name Like '%es%'
contains(Name, Test) -> Name Like '%Tes%' (space after ',' )
The text was updated successfully, but these errors were encountered: