We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ecaa10e commit c4d65eeCopy full SHA for c4d65ee
test/duckdb_test/config_test.rb
@@ -42,7 +42,10 @@ def test_s_key_descriptions
42
def test_set_config
43
config = DuckDB::Config.new
44
assert_instance_of(DuckDB::Config, config.set_config('access_mode', 'READ_ONLY'))
45
+ end
46
47
+ def test_set_config_with_exception
48
+ skip 'test with ASAN' if ENV['ASAN_TEST'] == '1'
49
assert_raises(DuckDB::Error) do
50
config.set_config('access_mode', 'INVALID_VALUE')
51
end
0 commit comments