diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 41ef7912..2ed1dc70 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ jobs: matrix: version: - '1.6' - - '1.7' + - '1' - 'nightly' os: - ubuntu-latest diff --git a/src/Tables.jl b/src/Tables.jl index f1dc5ced..0b6259a4 100644 --- a/src/Tables.jl +++ b/src/Tables.jl @@ -211,7 +211,7 @@ function rows(t::T)::Vector{OrderedDict{String,Any}} where {T<:DataTable} end function data(t::T; datakey = DATAKEY, columnskey = "columns")::Dict{String,Any} where {T<:DataTable} - Dict( + OrderedDict( columnskey => columns(t), datakey => rows(t), )