diff --git a/src/SQLite.jl b/src/SQLite.jl index 75df752..508fcbf 100644 --- a/src/SQLite.jl +++ b/src/SQLite.jl @@ -413,7 +413,6 @@ function juliatype(decl_typestr::AbstractString, elseif occursin(r"^NUMERIC\(\d+,\d+\)$", typeuc) return Float64 else - @warn "Unsupported SQLite declared type $decl_typestr, falling back to $default type" return default end end diff --git a/test/runtests.jl b/test/runtests.jl index 3326528..091f8f4 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -505,18 +505,7 @@ end 435, ], ) - rr = (;) # just to have the var declared - @test_logs( - ( - :warn, - "Unsupported SQLite declared type UNKNOWN1, falling back to String type", - ), - ( - :warn, - "Unsupported SQLite declared type UNKNOWN2, falling back to $(Int64) type", - ), - rr = DBInterface.execute(rowtable, binddb, "SELECT * FROM temp") - ) + rr = DBInterface.execute(rowtable, binddb, "SELECT * FROM temp") @test length(rr) == 1 r = first(rr) @test typeof.(Tuple(r)) == (