Skip to content

Commit 8035851

Browse files
committed
AwaitsFix for #94461 and #94329
1 parent 6413b2d commit 8035851

File tree

1 file changed

+13
-1
lines changed
  • x-pack/plugin/sql/qa/jdbc/single-node/src/javaRestTest/java/org/elasticsearch/xpack/sql/qa/jdbc/single_node

1 file changed

+13
-1
lines changed

x-pack/plugin/sql/qa/jdbc/single-node/src/javaRestTest/java/org/elasticsearch/xpack/sql/qa/jdbc/single_node/JdbcResultSetIT.java

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,16 @@
99

1010
import org.elasticsearch.xpack.sql.qa.jdbc.ResultSetTestCase;
1111

12-
public class JdbcResultSetIT extends ResultSetTestCase {}
12+
public class JdbcResultSetIT extends ResultSetTestCase {
13+
@Override
14+
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/94461")
15+
public void testGettingDateWithoutCalendar() throws Exception {
16+
super.testGettingDateWithoutCalendar();
17+
}
18+
19+
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/94329")
20+
@Override
21+
public void testGettingDateWithoutCalendarWithNanos() throws Exception {
22+
super.testGettingDateWithoutCalendarWithNanos();
23+
}
24+
}

0 commit comments

Comments
 (0)