Skip to content

Commit

Permalink
Fix some more failing integration tests
Browse files Browse the repository at this point in the history
Signed-off-by: currantw <[email protected]>
  • Loading branch information
currantw committed Nov 13, 2024
1 parent 3af85af commit aa9cb85
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ public void ipTypeShouldPassJdbcFormatter() {
executeQuery(
"SELECT host AS hostIP FROM " + TestsConstants.TEST_INDEX_WEBLOG + " ORDER BY hostIP",
"jdbc"),
containsString("\"type\": \"ip\""));
containsString("\"type\": \"string\""));
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public void test_nonnumeric_data_types() throws IOException {
schema("binary_value", "binary"),
schema("date_value", "timestamp"),
schema("date_nanos_value", "timestamp"),
schema("ip_value", "ip"),
schema("ip_value", "string"),
schema("object_value", "struct"),
schema("nested_value", "array"),
schema("geo_point_value", "geo_point"));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ public void typeof_opensearch_types() throws IOException {
"BOOLEAN",
"OBJECT",
"KEYWORD",
"IP",
"KEYWORD",
"BINARY",
"GEO_POINT"));
}
Expand Down

0 comments on commit aa9cb85

Please sign in to comment.