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
3 changes: 3 additions & 0 deletions databend-jdbc/src/test/java/com/databend/jdbc/TestTypes.java
Original file line number Diff line number Diff line change
Expand Up @@ -302,6 +302,9 @@ public void TestDate(String tz, boolean useLocalDate) throws SQLException {

@Test(groups = {"IT"})
public void TestInterval() throws SQLException {
if (Compatibility.skipDriverBugLowerThen("0.4.2")) {
return;
}
try (Connection c = Utils.createConnection();
Statement s = c.createStatement()) {

Expand Down
Loading