Skip to content

Commit bd9ba73

Browse files
committed
Merge pull request #101 from felipenoris/fn/getfield
fixes #100
2 parents aa777cb + 39b1c71 commit bd9ba73

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Sink.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ function Data.stream!(dt::Data.Table,sink::SQLite.Sink)
6464
end
6565
# CSV.Source
6666
function getbind!{T}(io,::Type{T},opts,row,col,stmt)
67-
val, isnull = CSV.getfield(io,T,opts,row,col)
67+
val, isnull = CSV.parsefield(io,T,opts,row,col)
6868
if isnull
6969
SQLite.bind!(stmt,col,NULL)
7070
else

0 commit comments

Comments
 (0)