Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions docs/changelog/129647.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
pr: 129647
summary: Fix `PushQueriesIT.testLike()` fails
area: ES|QL
type: bug
issues: []
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ public void testCaseInsensitiveEquality() throws IOException {
}

public void testLike() throws IOException {
String value = "v".repeat(between(0, 256));
String value = "v".repeat(between(1, 256));
String esqlQuery = """
FROM test
| WHERE test like "%value*"
Expand All @@ -258,7 +258,7 @@ public void testLike() throws IOException {
}

public void testLikeList() throws IOException {
String value = "v".repeat(between(0, 256));
String value = "v".repeat(between(1, 256));
String esqlQuery = """
FROM test
| WHERE test like ("%value*", "abc*")
Expand Down
Loading