Преглед изворни кода

forgot to add variable in recursive function

ogert пре 4 година
родитељ
комит
80b58fedbe
1 измењених фајлова са 4 додато и 2 уклоњено
  1. 4 2
      cdplib/db_migration/DataFrameToCollection.py

+ 4 - 2
cdplib/db_migration/DataFrameToCollection.py

@@ -132,7 +132,8 @@ class DataFrameToCollection():
                                 data=data,
                                 schema=sub_schema,
                                 grp_fields=grp_fields,
-                                _final_step=False)
+                                _final_step=False,
+                                already_reshaped=already_reshaped)
 
                     # Need to be checked since child elements can be empty
                     if sub_data is not None:
@@ -175,7 +176,8 @@ class DataFrameToCollection():
                                     data=data,
                                     schema=sub_schema,
                                     grp_fields=grp_fields + sub_grp_fields,
-                                    _final_step=False)
+                                    _final_step=False,
+                                    already_reshaped=already_reshaped)
 
                         if sub_data is not None: