airbyte-cdk 6.25.1__py3-none-any.whl → 6.25.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- airbyte_cdk/sources/declarative/partition_routers/substream_partition_router.py +6 -2
- {airbyte_cdk-6.25.1.dist-info → airbyte_cdk-6.25.2.dist-info}/METADATA +1 -1
- {airbyte_cdk-6.25.1.dist-info → airbyte_cdk-6.25.2.dist-info}/RECORD +6 -6
- {airbyte_cdk-6.25.1.dist-info → airbyte_cdk-6.25.2.dist-info}/LICENSE.txt +0 -0
- {airbyte_cdk-6.25.1.dist-info → airbyte_cdk-6.25.2.dist-info}/WHEEL +0 -0
- {airbyte_cdk-6.25.1.dist-info → airbyte_cdk-6.25.2.dist-info}/entry_points.txt +0 -0
@@ -296,8 +296,12 @@ class SubstreamPartitionRouter(PartitionRouter):
|
|
296
296
|
|
297
297
|
if not parent_state and incremental_dependency:
|
298
298
|
# Attempt to retrieve child state
|
299
|
-
|
300
|
-
substream_state =
|
299
|
+
substream_state_values = list(stream_state.values())
|
300
|
+
substream_state = substream_state_values[0] if substream_state_values else {}
|
301
|
+
# Filter out per partition state. Because we pass the state to the parent stream in the format {cursor_field: substream_state}
|
302
|
+
if isinstance(substream_state, (list, dict)):
|
303
|
+
substream_state = {}
|
304
|
+
|
301
305
|
parent_state = {}
|
302
306
|
|
303
307
|
# Copy child state to parent streams with incremental dependencies
|
@@ -122,7 +122,7 @@ airbyte_cdk/sources/declarative/partition_routers/cartesian_product_stream_slice
|
|
122
122
|
airbyte_cdk/sources/declarative/partition_routers/list_partition_router.py,sha256=t7pRdFWfFWJtQQG19c9PVeMODyO2BknRTakpM5U9N-8,4844
|
123
123
|
airbyte_cdk/sources/declarative/partition_routers/partition_router.py,sha256=YyEIzdmLd1FjbVP3QbQ2VFCLW_P-OGbVh6VpZShp54k,2218
|
124
124
|
airbyte_cdk/sources/declarative/partition_routers/single_partition_router.py,sha256=SKzKjSyfccq4dxGIh-J6ejrgkCHzaiTIazmbmeQiRD4,1942
|
125
|
-
airbyte_cdk/sources/declarative/partition_routers/substream_partition_router.py,sha256=
|
125
|
+
airbyte_cdk/sources/declarative/partition_routers/substream_partition_router.py,sha256=pPb0blnNx598bk47Khgs0cvwhN02SWSmg7lnJKb9K6Q,15577
|
126
126
|
airbyte_cdk/sources/declarative/requesters/README.md,sha256=eL1I4iLkxaw7hJi9S9d18_XcRl-R8lUSjqBVJJzvXmg,2656
|
127
127
|
airbyte_cdk/sources/declarative/requesters/__init__.py,sha256=d7a3OoHbqaJDyyPli3nqqJ2yAW_SLX6XDaBAKOwvpxw,364
|
128
128
|
airbyte_cdk/sources/declarative/requesters/error_handlers/__init__.py,sha256=SkEDcJxlT1683rNx93K9whoS0OyUukkuOfToGtgpF58,776
|
@@ -350,8 +350,8 @@ airbyte_cdk/utils/slice_hasher.py,sha256=-pHexlNYoWYPnXNH-M7HEbjmeJe9Zk7SJijdQ7d
|
|
350
350
|
airbyte_cdk/utils/spec_schema_transformations.py,sha256=-5HTuNsnDBAhj-oLeQXwpTGA0HdcjFOf2zTEMUTTg_Y,816
|
351
351
|
airbyte_cdk/utils/stream_status_utils.py,sha256=ZmBoiy5HVbUEHAMrUONxZvxnvfV9CesmQJLDTAIWnWw,1171
|
352
352
|
airbyte_cdk/utils/traced_exception.py,sha256=C8uIBuCL_E4WnBAOPSxBicD06JAldoN9fGsQDp463OY,6292
|
353
|
-
airbyte_cdk-6.25.
|
354
|
-
airbyte_cdk-6.25.
|
355
|
-
airbyte_cdk-6.25.
|
356
|
-
airbyte_cdk-6.25.
|
357
|
-
airbyte_cdk-6.25.
|
353
|
+
airbyte_cdk-6.25.2.dist-info/LICENSE.txt,sha256=Wfe61S4BaGPj404v8lrAbvhjYR68SHlkzeYrg3_bbuM,1051
|
354
|
+
airbyte_cdk-6.25.2.dist-info/METADATA,sha256=jJuIhUilYLyPxI5j1LJTO-NF3FOpbR0d8mrjXMiXkE8,5996
|
355
|
+
airbyte_cdk-6.25.2.dist-info/WHEEL,sha256=IYZQI976HJqqOpQU6PHkJ8fb3tMNBFjg-Cn-pwAbaFM,88
|
356
|
+
airbyte_cdk-6.25.2.dist-info/entry_points.txt,sha256=fj-e3PAQvsxsQzyyq8UkG1k8spunWnD4BAH2AwlR6NM,95
|
357
|
+
airbyte_cdk-6.25.2.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|