Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: Using an empty list for __key_properties__ to disable a stream primary keys is now recommended as an alternative to null #2435

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/stream_maps.md
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ stream_maps:

Notes:

- To sync the stream as if it did not contain a primary key, simply set `__key_properties__` to `null`.
- To sync the stream as if it did not contain a primary key, simply set `__key_properties__` to `null` or an empty list.
- Key properties _must_ be present in the transformed stream result. Otherwise, an error will be raised.

### Add a property with a string literal value
Expand Down
Loading