Skip to content

Commit d6c90a5

Browse files
committed
use UINTEGER instead of UINT32
1 parent 619c277 commit d6c90a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/duckdb_test/prepared_statement_test.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ def test_bind_uint32
321321
end
322322

323323
def test_bind_uint32_with_negative
324-
@con.query('CREATE TABLE values (value UINT32)')
324+
@con.query('CREATE TABLE values (value UINTEGER)')
325325

326326
stmt = DuckDB::PreparedStatement.new(@con, 'INSERT INTO values(value) VALUES ($1)')
327327
assert_raises(DuckDB::Error) { stmt.bind_uint32(1, -1) }

0 commit comments

Comments
 (0)