Skip to content

Commit

Permalink
Update src/Tables.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
bkamins authored Oct 19, 2023
1 parent 9aa551a commit edb7cc8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Tables.jl
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,7 @@ function Base.getproperty(sch::Schema{names, types}, field::Symbol) where {names
elseif field === :types
if types === nothing
T = getfield(sch, :storedtypes)
return (T !== nothing ? T : nothing)
return T !== nothing ? T : nothing
else
ncol = fieldcount(types)
if ncol <= 512
Expand Down

0 comments on commit edb7cc8

Please sign in to comment.