From eb27f8a379a2837abcf94bc71ac0990d55639761 Mon Sep 17 00:00:00 2001 From: Pietro Vertechi Date: Sat, 15 Feb 2020 10:38:15 +0000 Subject: [PATCH] decouple more from structarrays --- src/IndexedTables.jl | 2 +- src/utils.jl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/IndexedTables.jl b/src/IndexedTables.jl index f35757e7..d0b72360 100644 --- a/src/IndexedTables.jl +++ b/src/IndexedTables.jl @@ -5,7 +5,7 @@ using PooledArrays, SparseArrays, Statistics, WeakRefStrings using OnlineStatsBase: OnlineStat, fit! using StructArrays: StructVector, StructArray, fieldarrays, - staticschema, ArrayInitializer, refine_perm!, collect_structarray, + refine_perm!, collect_structarray, append!!, replace_storage, GroupPerm, GroupJoinPerm, roweq, rowcmp, index_type diff --git a/src/utils.jl b/src/utils.jl index 0753994d..a72cd86f 100644 --- a/src/utils.jl +++ b/src/utils.jl @@ -107,7 +107,7 @@ Base.@pure function arrayof(S) if T == Union{} Vector{Union{}} elseif T<:Tuple - coltypes = staticschema(Tuple{map(arrayof, fieldtypes(T))...}) + coltypes = Tuple{map(arrayof, fieldtypes(T))...} Columns{T, coltypes, index_type(coltypes)} elseif T<:NamedTuple if fieldcount(T) == 0