Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix type instability in getproperty(::Schema, ::Symbol) #340

Merged
merged 7 commits into from
Oct 20, 2023
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 12 additions & 2 deletions src/Tables.jl
Original file line number Diff line number Diff line change
Expand Up @@ -499,8 +499,18 @@ function Base.getproperty(sch::Schema{names, types}, field::Symbol) where {names
if field === :names
return names === nothing ? getfield(sch, :storednames) : names
elseif field === :types
T = getfield(sch, :storedtypes)
return types === nothing ? (T !== nothing ? T : nothing) : Tuple(fieldtype(types, i) for i = 1:fieldcount(types))
if types === nothing
T = getfield(sch, :storedtypes)
return (T !== nothing ? T : nothing)
bkamins marked this conversation as resolved.
Show resolved Hide resolved
else
ncol = fieldcount(types)
if ncol <= 512
# Type stable, but slower to compile
return ntuple(i -> fieldtype(types, i), Val(ncol))
else
return Tuple(fieldtype(types, i) for i=1:ncol)
end
end
else
throw(ArgumentError("unsupported property for Tables.Schema"))
end
Expand Down
11 changes: 11 additions & 0 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,17 @@ end

# 228
@test Tables.columntable(NamedTuple[]) === NamedTuple()

@testset "Type stability of schema(x).types" begin
_get_types(X) = Tables.schema(X).types

x = (a=[1.0], b=[1.0])
@inferred Tuple{Type{Float64},Type{Float64}} _get_types(x)

# Trigger other branch which lacks type stability:
x_wide = NamedTuple([Symbol("x$(i)") => [1.0] for i=1:513])
@inferred NTuple{513,DataType} _get_types(x_wide)
end
end

@testset "Materializer" begin
Expand Down