Skip to content

Commit 236bf39

Browse files
author
Shashi Gowda
authored
Merge pull request #5 from davidanthoff/better-na-handling
Make NA handling more general
2 parents 1f29c98 + 7803d99 commit 236bf39

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/TableView.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ function JuliaDB.subtable(t::DNextTable, r)
1212
end
1313

1414
showna(xs) = xs
15-
function showna(xs::DataValueArray)
15+
function showna(xs::AbstractArray{T}) where {T<:DataValue}
1616
map(xs) do x
1717
isnull(x) ? "NA" : get(x)
1818
end

0 commit comments

Comments
 (0)