Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Summary: Fix csutom escape char for substrings-search in constant like pattern. The exsit ut has covered the custom-escape case but escape char '#' is just not supported by substrings-search ``` testLike("%cd", "%#%%", '#', true); testLike("cde", "%#%%", '#', false); ``` Add ut to cover the case: ``` testLike("///__", "%//%/%", '/', false); ``` Pull Request resolved: #11091 Reviewed By: Yuhta, amitkdutta Differential Revision: D63395708 Pulled By: kagamiori fbshipit-source-id: e5eb651695f27fe5ff88b72963aa70d4a550ba7a
- Loading branch information