Skip to content

Commit

Permalink
replace bool by boolean in catalog_types
Browse files Browse the repository at this point in the history
  • Loading branch information
keyn4 committed Oct 6, 2023
1 parent ba13343 commit dbfb0da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gluestick/etl_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -558,7 +558,7 @@ def get_types_from_catalog(self, catalog, stream):
streams = next(c for c in catalog["streams"] if c["stream"] == stream)
types = streams["schema"]["properties"]

type_mapper = {"integer": "Int64", "number": float, "boolean": bool}
type_mapper = {"integer": "Int64", "number": float, "boolean": "boolean"}

dtype = {}
parse_dates = []
Expand Down

0 comments on commit dbfb0da

Please sign in to comment.