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
SQLLike has different implementations for inPs and in memory evaluation.
inPs simply delegates the evaluation to Database.
InMemory tries to use RegEx to achieve same result, however operator % is not handled correctly, making it impossible to specify the position of search string.
Implement SQLLikeToRegEx to correctly handle the use of %operator.
Both TBOS_SQLLike and TBOS_SQLLikeCaseInSensitive are affected.
Test by comparing results of expression using SQLLike containing % with ObjectInspector InPs checked and unchecked (before and after this change)
The text was updated successfully, but these errors were encountered:
SQLLike has different implementations for inPs and in memory evaluation.
inPs simply delegates the evaluation to Database.
InMemory tries to use RegEx to achieve same result, however operator % is not handled correctly, making it impossible to specify the position of search string.
Implement SQLLikeToRegEx to correctly handle the use of %operator.
Both
TBOS_SQLLike
andTBOS_SQLLikeCaseInSensitive
are affected.Test by comparing results of expression using SQLLike containing % with ObjectInspector InPs checked and unchecked (before and after this change)
The text was updated successfully, but these errors were encountered: