Add reason for the @Disabled

This commit is contained in:
김선우
2025-05-05 15:04:48 +09:00
parent cb1c538a03
commit aeca307c90

View File

@@ -83,7 +83,7 @@ class JDBC4StatementTest {
}
@Test
@Disabled("Refer to sqlite-jdbc implementation and fix this test")
@Disabled("limbo's total_changes() works differently from sqlite's total_changes()")
void execute_update_should_return_number_of_updated_elements() throws Exception {
assertThat(stmt.executeUpdate("CREATE TABLE s1 (c1 INT);")).isEqualTo(0);
assertThat(stmt.executeUpdate("INSERT INTO s1 VALUES (1), (2), (3);")).isEqualTo(3);