We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6e8e0ab + 48bc36f commit 3712337Copy full SHA for 3712337
Project.toml
@@ -8,7 +8,7 @@ Tables = "bd369af6-aec1-5ad0-b16a-f7cc5008161c"
8
9
[compat]
10
DataAPI = "1"
11
-Tables = "0.2"
+Tables = "1"
12
julia = "1"
13
14
[extras]
src/tables.jl
@@ -1,10 +1,8 @@
1
using Tables: Tables
2
3
-Tables.istable(::Type{<:StructVector}) = true
4
-Tables.rowaccess(::Type{<:StructVector}) = true
5
-Tables.columnaccess(::Type{<:StructVector}) = true
+Tables.isrowtable(::Type{<:StructVector}) = true
6
7
-Tables.rows(s::StructVector) = s
+Tables.columnaccess(::Type{<:StructVector}) = true
Tables.columns(s::StructVector) = fieldarrays(s)
Tables.schema(s::StructVector) = Tables.Schema(staticschema(eltype(s)))
0 commit comments