Skip to content

Commit

Permalink
Added test data and integration tests for nested in select
Browse files Browse the repository at this point in the history
Signed-off-by: Guian Gumpac <[email protected]>
  • Loading branch information
GumpacG committed Feb 9, 2023
1 parent 89e33cf commit 8098fb5
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions integ-test/src/test/java/org/opensearch/sql/sql/NestedIT.java
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ public void nested_function_in_an_aggregate_function_in_select_test() {
String query = "SELECT sum(nested(message.dayOfWeek)) FROM " +
TEST_INDEX_NESTED_TYPE_WITHOUT_ARRAYS;
JSONObject result = executeJdbcRequest(query);

verifyDataRows(result, rows(14));
}

Expand All @@ -78,7 +77,6 @@ public void nested_function_with_arrays_in_an_aggregate_function_in_select_test(
String query = "SELECT sum(nested(message.dayOfWeek)) FROM " +
TEST_INDEX_NESTED_TYPE;
JSONObject result = executeJdbcRequest(query);

verifyDataRows(result, rows(19));
}

Expand Down

0 comments on commit 8098fb5

Please sign in to comment.