madrob commented on code in PR #865: URL: https://github.com/apache/solr/pull/865#discussion_r875982767
########## solr/modules/sql/src/test/org/apache/solr/handler/sql/TestSQLHandler.java: ########## @@ -2434,15 +2434,73 @@ public void testColIsNull() throws Exception { @Test public void testLike() throws Exception { new UpdateRequest() - .add("id", "1", "a_s", "hello-1", "b_s", "foo") - .add("id", "2", "a_s", "world-2", "b_s", "foo") - .add("id", "3", "a_s", "hello-3", "b_s", "foo") - .add("id", "4", "a_s", "world-4", "b_s", "foo") - .add("id", "5", "a_s", "hello-5", "b_s", "foo") - .add("id", "6", "a_s", "world-6", "b_s", "bar") + .add( + "id", + "1", + "a_s", + "hello-1", + "b_s", + "foo", + "c_t", + "the quick brown fox jumped over the lazy dog") + .add( + "id", + "2", + "a_s", + "world-2", + "b_s", + "foo", + "c_t", + "the sly black dog jumped over the sleeping pig") + .add( + "id", + "3", + "a_s", + "hello-3", + "b_s", + "foo", + "c_t", + "the quick brown fox jumped over the lazy dog") + .add( + "id", + "4", + "a_s", + "world-4", + "b_s", + "foo", + "c_t", + "the sly black dog jumped over the sleepy pig") + .add( + "id", + "5", + "a_s", + "hello-5", + "b_s", + "foo", + "c_t", + "the quick brown fox jumped over the lazy dog") + .add( + "id", + "6", + "a_s", + "world-6", + "b_s", + "bar", + "c_t", + "the sly black dog jumped over the sleepin piglet") + .add( + "id", + "7", + "a_s", + "world%_7", + "b_s", + "zaz", + "c_t", + "the lazy dog jumped over the quick brown fox") .commit(cluster.getSolrClient(), COLLECTIONORALIAS); expectResults("SELECT a_s FROM $ALIAS WHERE a_s LIKE 'h_llo-%'", 3); + expectResults("SELECT a_s FROM $ALIAS WHERE a_s LIKE 'world\\%\\__' ESCAPE '\\'", 1); Review Comment: if the escapes weren’t working to parse those as literal `%` and `_`, then `world%__` (using wildcards) would still match the literal `world%_7` but it wouldn’t match anything else. `world-4` is too short, right? is `%` 1 or more, or 0 or more characters? If it’s 1 or more then we need a string somewhere that is `worldXXX` with three trailing characters -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@solr.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@solr.apache.org For additional commands, e-mail: issues-h...@solr.apache.org