Skip to content

Commit 8720c74

Browse files
committed
apply spotless
Signed-off-by: xinyual <xinyual@amazon.com>
1 parent 771e8e0 commit 8720c74

1 file changed

Lines changed: 9 additions & 8 deletions

File tree

integ-test/src/test/java/org/opensearch/sql/ppl/ExplainIT.java

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -61,16 +61,17 @@ public void testFilterPushDownExplain() throws IOException {
6161
@Test
6262
public void testFilterByCompareStringTimestampPushDownExplain() throws IOException {
6363
String expected =
64-
isCalciteEnabled()
65-
? loadFromFile("expectedOutput/calcite/explain_filter_push_compare_timestamp_string.json")
66-
: loadFromFile("expectedOutput/ppl/explain_filter_push_compare_timestamp_string.json");
64+
isCalciteEnabled()
65+
? loadFromFile(
66+
"expectedOutput/calcite/explain_filter_push_compare_timestamp_string.json")
67+
: loadFromFile("expectedOutput/ppl/explain_filter_push_compare_timestamp_string.json");
6768

6869
assertJsonEqualsIgnoreId(
69-
expected,
70-
explainQueryToString(
71-
"source=opensearch-sql_test_index_bank"
72-
+ "| where birthdate > '2016-12-08 00:00:00' "
73-
+ "| where birthdate < '2018-11-09 00:00:00' "));
70+
expected,
71+
explainQueryToString(
72+
"source=opensearch-sql_test_index_bank"
73+
+ "| where birthdate > '2016-12-08 00:00:00' "
74+
+ "| where birthdate < '2018-11-09 00:00:00' "));
7475
}
7576

7677
@Test

0 commit comments

Comments
 (0)