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 db540f6 commit f0aa342Copy full SHA for f0aa342
test/duckdb_test/connection_test.rb
@@ -108,6 +108,7 @@ def test_async_query_stream_with_valid_params
108
end
109
110
def test_async_query_stream_with_invalid_params
111
+ skip 'test with ASAN' if ENV['ASAN_TEST'] == '1'
112
assert_raises(DuckDB::Error) { @con.async_query_stream('foo', 'bar') }
113
114
assert_raises(ArgumentError) { @con.async_query_stream }
test/duckdb_test/prepared_statement_test.rb
@@ -457,6 +457,7 @@ def test_bind_varchar_date
457
458
459
def test_bind_varchar_date_with_invalid_timestamp_string
460
461
con = PreparedStatementTest.con
462
stmt = DuckDB::PreparedStatement.new(con, 'SELECT * FROM a WHERE col_date = $1')
463
0 commit comments