Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
hantmac committed Sep 5, 2024
1 parent 1f24cef commit d30a338
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -526,7 +526,7 @@ public void shouldBuildStageAttachmentWithFileFormatOptions() throws SQLExceptio
Assertions.assertEquals("\\N", stageAttachment.getCopyOptions().get("NULL_DISPLAY"));
}

@Test
@Test(groups = {"IT", "FLAKY"})
public void testSelectWithClusterKey() throws SQLException {
Connection conn = createConnection();
conn.createStatement().execute("drop table if exists default.test_clusterkey");
Expand All @@ -548,7 +548,7 @@ public void testSelectWithClusterKey() throws SQLException {
try (PreparedStatement statement = conn.prepareStatement(selectSQL)) {
ResultSet rs = statement.executeQuery();
while (rs.next()) {
Assertions.assertEquals("0", rs.getString(5));
Assertions.assertEquals("0.0", rs.getString(5));
}
}
}
Expand Down

0 comments on commit d30a338

Please sign in to comment.