Skip to content

Commit 7803d99

Browse files
committed
Make NA handling more general
1 parent 52aaecd commit 7803d99

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
@@ -11,7 +11,7 @@ function JuliaDB.subtable(t::DNextTable, r)
1111
end
1212

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

0 commit comments

Comments
 (0)