We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9249de3 commit d2c7088Copy full SHA for d2c7088
1 file changed
integ-test/src/test/java/org/opensearch/sql/ppl/LikeQueryIT.java
@@ -106,19 +106,8 @@ public void test_convert_field_text_to_keyword() throws IOException {
106
assertTrue(result.contains("TextKeywordBody.keyword"));
107
}
108
109
- @Test
110
- public void test_like_should_be_case_sensitive() throws IOException {
111
- String query =
112
- "source="
113
- + TEST_INDEX_WILDCARD
114
- + " | WHERE Like(KeywordBody, 'test Wildcard%', true) | fields KeywordBody";
115
- JSONObject result = executeQuery(query);
116
- verifyNumOfRows(result, 0);
117
- }
118
-
119
@Test
120
public void test_like_with_case_sensitive() throws IOException {
121
- // only work in v3
122
String query =
123
"source="
124
+ TEST_INDEX_WILDCARD
0 commit comments