Skip to content

Commit

Permalink
Merge pull request #3 from mjsqu/feature/remove_ordering_of_columns
Browse files Browse the repository at this point in the history
Remove ordering of columns
  • Loading branch information
mjsqu authored Sep 21, 2022
2 parents a58d3a6 + 4354b8f commit 0c9349f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion target_snowflake/flattening.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def flatten_schema(d, parent_key=None, sep='__', level=0, max_level=0):
if len(list(g)) > 1:
raise ValueError(f'Duplicate column name produced in schema: {k}')

return dict(sorted_items)
return dict(items)


def _should_json_dump_value(key, value, schema=None):
Expand Down

0 comments on commit 0c9349f

Please sign in to comment.