Description
This is a clone of the Enterprise ticket DH-14241; but the code is identical in Community. The regex matching with look ahead is roughly 100x slower in reasonable uses cases than just doing successive filters.
final Table y = x.where("String icase includes all word1, word2");
final Table z = x.where("String icase includes word1", "String icase includes word2");
Description
This is a clone of the Enterprise ticket DH-14241; but the code is identical in Community. The regex matching with look ahead is roughly 100x slower in reasonable uses cases than just doing successive filters.
final Table y = x.where("String icase includes all
word1,word2");final Table z = x.where("String icase includes
word1", "String icase includesword2");