target-bigquery v0.11.3
Added one new feature:
- Enable user to control whether target-bigquery A) merges multiple state messages from the tap into the state file (default option) or B) uses the last state message as the state file.
- This can be controlled by a command line flag
['--no-merge_state_messages' | '--no-merge_state_messages']
or from the target config file by passing"merge_state_messages": 0
. - This feature was requested by an open-source community member Dan Ladd.
- Implementation and development was overseen by Anže Kravanja.
- Code files changed:
target_bigquery/__init__.py
,target_bigquery/state.py
andtests/test_state.py
.