Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ public void testPercentilesQuery() {
assertThat(percentileRow.getDouble("99.9"), equalTo(39.0));
}

@Ignore("flaky test, trigger resource not enough exception. "
+ "ORDER BY date_format(insert_time, 'dd-MM-YYYY') can't be pushed down ")
public void testDateTimeInQuery() {
JSONObject response = executeJdbcRequest(
"SELECT date_format(insert_time, 'dd-MM-YYYY') " +
Expand All @@ -55,6 +57,8 @@ public void testDateTimeInQuery() {
equalTo("17-08-2014"));
}

@Ignore("flaky test, trigger resource not enough exception. "
+ "ORDER BY all_client/10 can't be pushed down ")
public void testDivisionInQuery() {
JSONObject response = executeJdbcRequest(
"SELECT all_client/10 from opensearch-sql_test_index_online ORDER BY all_client/10 desc limit 1");
Expand Down