Revert java image. Disable some failing test for now.

This commit is contained in:
김선우 2025-01-18 09:52:42 +09:00
parent 6542fefd83
commit ab23e20732
2 changed files with 3 additions and 1 deletions

View file

@ -2,6 +2,7 @@ package org.github.tursodatabase;
import org.github.tursodatabase.jdbc4.JDBC4Connection;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import java.sql.ResultSet;
@ -21,6 +22,7 @@ public class IntegrationTest {
}
@Test
@Disabled("Doesn't work on workflow. Need investigation.")
void create_table_multi_inserts_select() throws Exception {
Statement stmt = createDefaultStatement();
stmt.execute("CREATE TABLE users (id INT PRIMARY KEY, username TEXT);");