File tree Expand file tree Collapse file tree 2 files changed +1
-13
lines changed Expand file tree Collapse file tree 2 files changed +1
-13
lines changed Original file line number Diff line number Diff line change @@ -413,7 +413,6 @@ function juliatype(decl_typestr::AbstractString,
413
413
elseif occursin (r" ^NUMERIC\(\d +,\d +\) $" , typeuc)
414
414
return Float64
415
415
else
416
- @warn " Unsupported SQLite declared type $decl_typestr , falling back to $default type"
417
416
return default
418
417
end
419
418
end
Original file line number Diff line number Diff line change 505
505
435 ,
506
506
],
507
507
)
508
- rr = (;) # just to have the var declared
509
- @test_logs (
510
- (
511
- :warn ,
512
- " Unsupported SQLite declared type UNKNOWN1, falling back to String type" ,
513
- ),
514
- (
515
- :warn ,
516
- " Unsupported SQLite declared type UNKNOWN2, falling back to $(Int64) type" ,
517
- ),
518
- rr = DBInterface. execute (rowtable, binddb, " SELECT * FROM temp" )
519
- )
508
+ rr = DBInterface. execute (rowtable, binddb, " SELECT * FROM temp" )
520
509
@test length (rr) == 1
521
510
r = first (rr)
522
511
@test typeof .(Tuple (r)) == (
You can’t perform that action at this time.
0 commit comments