Skip to content

Commit

Permalink
Add support for Array and ExprValue Parsing With Inner Hits
Browse files Browse the repository at this point in the history
Signed-off-by: forestmvey <forestv@bitquilltech.com>
  • Loading branch information
forestmvey committed Jun 14, 2023
1 parent 691012d commit 71147ff
Show file tree
Hide file tree
Showing 14 changed files with 597 additions and 112 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@

import org.json.JSONArray;
import org.json.JSONObject;
import org.junit.Assume;
import org.junit.Test;
import org.opensearch.sql.legacy.utils.StringUtils;

Expand Down
32 changes: 32 additions & 0 deletions integ-test/src/test/java/org/opensearch/sql/sql/NestedIT.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
package org.opensearch.sql.sql;

import static org.opensearch.sql.legacy.TestsConstants.TEST_INDEX_MULTI_NESTED_TYPE;
import static org.opensearch.sql.legacy.TestsConstants.TEST_INDEX_NESTED_SIMPLE;
import static org.opensearch.sql.legacy.TestsConstants.TEST_INDEX_NESTED_TYPE;
import static org.opensearch.sql.legacy.TestsConstants.TEST_INDEX_NESTED_TYPE_WITHOUT_ARRAYS;
import static org.opensearch.sql.legacy.TestsConstants.TEST_INDEX_NESTED_WITH_NULLS;
Expand All @@ -31,6 +32,7 @@ public void init() throws IOException {
loadIndex(Index.NESTED_WITHOUT_ARRAYS);
loadIndex(Index.EMPLOYEE_NESTED);
loadIndex(Index.NESTED_WITH_NULLS);
loadIndex(Index.NESTED_SIMPLE);
}

@Test
Expand Down Expand Up @@ -366,4 +368,34 @@ public void test_nested_in_where_as_predicate_expression_with_relevance_query()
assertEquals(1, result.getInt("total"));
verifyDataRows(result, rows(10, "a"));
}

@Test
public void nested_function_with_date_types_as_object_arrays_within_arrays_test() {
String query = "SELECT nested(address.moveInDate) FROM " + TEST_INDEX_NESTED_SIMPLE;
JSONObject result = executeJdbcRequest(query);

assertEquals(11, result.getInt("total"));
verifyDataRows(result,
rows(new JSONObject(Map.of("dateAndTime","1984-04-12 09:07:42"))),
rows(new JSONArray(
List.of(
Map.of("dateAndTime", "2023-05-03 08:07:42"),
Map.of("dateAndTime", "2001-11-11 04:07:44"))
)
),
rows(new JSONObject(Map.of("dateAndTime", "1966-03-19 03:04:55"))),
rows(new JSONObject(Map.of("dateAndTime", "2011-06-01 01:01:42"))),
rows(new JSONObject(Map.of("dateAndTime", "1901-08-11 04:03:33"))),
rows(new JSONObject(Map.of("dateAndTime", "2023-05-03 08:07:42"))),
rows(new JSONObject(Map.of("dateAndTime", "2001-11-11 04:07:44"))),
rows(new JSONObject(Map.of("dateAndTime", "1977-07-13 09:04:41"))),
rows(new JSONObject(Map.of("dateAndTime", "1933-12-12 05:05:45"))),
rows(new JSONObject(Map.of("dateAndTime", "1909-06-17 01:04:21"))),
rows(new JSONArray(
List.of(
Map.of("dateAndTime", "2001-11-11 04:07:44"))
)
)
);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,14 @@
"ignore_above": 256
}
}
},
"moveInDate" : {
"properties": {
"dateAndTime": {
"type": "date",
"format": "basic_date_time"
}
}
}
}
},
Expand Down
10 changes: 5 additions & 5 deletions integ-test/src/test/resources/nested_simple.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{"index":{"_id":"1"}}
{"name":"abbas","age":24,"address":[{"city":"New york city","state":"NY"},{"city":"bellevue","state":"WA"},{"city":"seattle","state":"WA"},{"city":"chicago","state":"IL"}]}
{"name":"abbas","age":24,"address":[{"city":"New york city","state":"NY","moveInDate":{"dateAndTime":"19840412T090742.000Z"}},{"city":"bellevue","state":"WA","moveInDate":[{"dateAndTime":"20230503T080742.000Z"},{"dateAndTime":"20011111T040744.000Z"}]},{"city":"seattle","state":"WA","moveInDate":{"dateAndTime":"19660319T030455.000Z"}},{"city":"chicago","state":"IL","moveInDate":{"dateAndTime":"20110601T010142.000Z"}}]}
{"index":{"_id":"2"}}
{"name":"chen","age":32,"address":[{"city":"Miami","state":"Florida"},{"city":"los angeles","state":"CA"}]}
{"name":"chen","age":32,"address":[{"city":"Miami","state":"Florida","moveInDate":{"dateAndTime":"19010811T040333.000Z"}},{"city":"los angeles","state":"CA","moveInDate":{"dateAndTime":"20230503T080742.000Z"}}]}
{"index":{"_id":"3"}}
{"name":"peng","age":26,"address":[{"city":"san diego","state":"CA"},{"city":"austin","state":"TX"}]}
{"name":"peng","age":26,"address":[{"city":"san diego","state":"CA","moveInDate":{"dateAndTime":"20011111T040744.000Z"}},{"city":"austin","state":"TX","moveInDate":{"dateAndTime":"19770713T090441.000Z"}}]}
{"index":{"_id":"4"}}
{"name":"andy","age":19,"id":4,"address":[{"city":"houston","state":"TX"}]}
{"name":"andy","age":19,"id":4,"address":[{"city":"houston","state":"TX","moveInDate":{"dateAndTime":"19331212T050545.000Z"}}]}
{"index":{"_id":"5"}}
{"name":"david","age":25,"address":[{"city":"raleigh","state":"NC"},{"city":"charlotte","state":"SC"}]}
{"name":"david","age":25,"address":[{"city":"raleigh","state":"NC","moveInDate":{"dateAndTime":"19090617T010421.000Z"}},{"city":"charlotte","state":"SC","moveInDate":[{"dateAndTime":"20011111T040744.000Z"}]}]}
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,36 @@ public interface Content {
*/
boolean isNumber();

/**
* Is float value.
*/
boolean isFloat();

/**
* Is double value.
*/
boolean isDouble();

/**
* Is long value.
*/
boolean isLong();

/**
* Is boolean value.
*/
boolean isBoolean();

/**
* Is string value.
*/
boolean isString();

/**
* Is array value.
*/
boolean isArray();

/**
* Get integer value.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

package org.opensearch.sql.opensearch.data.utils;

import com.fasterxml.jackson.databind.node.ArrayNode;
import java.util.AbstractMap;
import java.util.Iterator;
import java.util.List;
Expand Down Expand Up @@ -103,6 +104,31 @@ public boolean isNumber() {
return value instanceof Number;
}

@Override
public boolean isFloat() {
return value instanceof Float;
}

@Override
public boolean isDouble() {
return value instanceof Double;
}

@Override
public boolean isLong() {
return value instanceof Long;
}

@Override
public boolean isBoolean() {
return value instanceof Boolean;
}

@Override
public boolean isArray() {
return value instanceof ArrayNode;
}

@Override
public boolean isString() {
return value instanceof String;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,11 +88,36 @@ public boolean isNumber() {
return value().isNumber();
}

@Override
public boolean isLong() {
return value().isLong();
}

@Override
public boolean isFloat() {
return value().isFloat();
}

@Override
public boolean isDouble() {
return value().isDouble();
}

@Override
public boolean isString() {
return value().isTextual();
}

@Override
public boolean isBoolean() {
return value().isBoolean();
}

@Override
public boolean isArray() {
return value().isArray();
}

@Override
public Object objectValue() {
return value();
Expand Down Expand Up @@ -126,11 +151,10 @@ public Pair<Double, Double> geoValue() {
}

/**
* Return the first element if is OpenSearch Array.
* https://www.elastic.co/guide/en/elasticsearch/reference/current/array.html.
* Getter for value. If value is array the whole array is returned.
*/
private JsonNode value() {
return value.isArray() ? value.get(0) : value;
return value;
}

/**
Expand Down
Loading

0 comments on commit 71147ff

Please sign in to comment.