Index
Pipeline utility modules.
            set_delta_load_info(table_identifier, delta_load_options, runtime_info)
¶
    Update the runtime information dictionary with delta load options for a specific table.
If delta load options are provided, this function marks the runtime as a delta load and stores the options under the given table identifier within the 'delta_load_options' key of the runtime_info dictionary.
The method uses setdefault("delta_load_options", {}) to ensure that the 'delta_load_options'
key exists in the runtime_info dictionary. If the key is not present, it initializes it with
an empty dictionary. This prevents overwriting existing delta load options and allows
multiple tables' options to be stored without losing previous entries.
Parameters:
| Name | Type | Description | Default | 
|---|---|---|---|
| table_identifier | str | The identifier for the table (can be table name or file path). | required | 
| delta_load_options | dict[str, Any] | Options specific to the delta load for the table. | required | 
| runtime_info | dict[str, Any] | The runtime information dictionary to update. | required | 
Returns:
| Type | Description | 
|---|---|
| dict[str, Any] | The updated runtime information dictionary with delta load details. |