Closed pcorbel closed 4 years ago
The write_record method lacks the support of a version.
version
Some tests give:
import singer singer.write_record(stream_name="a", record={"hello": "world"}) {"type": "RECORD", "stream": "a", "record": {"hello": "world"}} singer.write_record(stream_name="a", record={"hello": "world"}, version=None) {"type": "RECORD", "stream": "a", "record": {"hello": "world"}} singer.write_record(stream_name="a", record={"hello": "world"}, version="2019-01-01") {"type": "RECORD", "stream": "a", "record": {"hello": "world"}, "version": "2019-01-01"} singer.write_record(stream_name="a", record={"hello": "world"}, version=123456789) {"type": "RECORD", "stream": "a", "record": {"hello": "world"}, "version": 123456789}
The write_record method lacks the support of a
version
.Some tests give: