We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a7562c commit 67f7b52Copy full SHA for 67f7b52
1 file changed
src/test/java/org/duckdb/TestDuckDBJDBC.java
@@ -917,11 +917,11 @@ public static void test_invalid_config() throws Exception {
917
918
public static void test_valid_but_local_config_throws_exception() throws Exception {
919
Properties info = new Properties();
920
- info.put("errors_as_json", "true");
+ info.put("custom_profiling_settings", "{}");
921
922
String message = assertThrows(() -> DriverManager.getConnection(JDBC_URL, info), SQLException.class);
923
924
- assertTrue(message.contains("Could not set option \"errors_as_json\" as a global option"));
+ assertTrue(message.contains("Could not set option \"custom_profiling_settings\" as a global option"));
925
}
926
927
private static String getSetting(Connection conn, String settingName) throws Exception {
0 commit comments