You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fixed bug where nested json inside pandas wouldn't be ingested correctly (#568)
* Fixed bug where nested json inside pandas wouldn't be ingested correctly
* Update changelog
* Format
* Fixed test
* Fixed test
* New logic
* New logic
* New logic
* New logic
* New logic
* Update
:param DataFormat data_format: Format to convert the dataframe to - Can be DataFormat.CSV, DataFormat.JSOn or None. If not specified, it will try to infer it from the mapping, if not found, it will default to JSON.
110
111
"""
111
112
112
113
ifself._is_closed:
@@ -117,12 +118,28 @@ def ingest_from_dataframe(self, df: "pandas.DataFrame", ingestion_properties: In
117
118
ifnotisinstance(df, DataFrame):
118
119
raiseValueError("Expected DataFrame instance, found {}".format(type(df)))
0 commit comments