We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32e22a4 commit 1eee573Copy full SHA for 1eee573
1 file changed
src/pywrap/PyPandasDataFrame.jl
@@ -102,6 +102,6 @@ function _columns(df, columnnames, columntypes)
102
# output a table
103
# TODO: realising columns to vectors could be done lazily with a different table type
104
schema = Tables.Schema(colnames, coltypes)
105
- coldict = Dict(k=>v for (k,v) in zip(colnames, columns))
+ coldict = Tables.OrderedDict(k=>v for (k,v) in zip(colnames, columns))
106
Tables.DictColumnTable(schema, coldict)
107
end
0 commit comments