Skip to content

Commit 77ee463

Browse files
author
Christopher Doris
committed
2 parents 9c89867 + 1eee573 commit 77ee463

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pywrap/PyPandasDataFrame.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,6 @@ function _columns(df, columnnames, columntypes)
102102
# output a table
103103
# TODO: realising columns to vectors could be done lazily with a different table type
104104
schema = Tables.Schema(colnames, coltypes)
105-
coldict = Dict(k=>v for (k,v) in zip(colnames, columns))
105+
coldict = Tables.OrderedDict(k=>v for (k,v) in zip(colnames, columns))
106106
Tables.DictColumnTable(schema, coldict)
107107
end

0 commit comments

Comments
 (0)