Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Catalog fix for anytypes #30

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions tap_salesforce/salesforce/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,8 @@ def field_to_property_schema(field, mdata): # pylint:disable=too-many-branches
elif sf_type == "time":
property_schema['type'] = "string"
elif sf_type in LOOSE_TYPES:
# Force string type
property_schema['type'] = "string"
return property_schema, mdata # No type = all types
elif sf_type in BINARY_TYPES:
mdata = metadata.write(mdata, ('properties', field_name), "inclusion", "unsupported")
Expand Down