Fixes typo in Incremental-loading docs. #774
Closed
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
Very small change.
private_key
toprimary_key
in the description of themerge
option forwrite_disposition
in the Incremental loading docs.Additional Context
While working through the Getting Started exercise, I was curious about the other
write_disposition
options, started reading the Incremental loading docs, and the description of themerge
option indicated it uses aprivate_key
to determine which records are duplicates. I'm nearly certain that should beprimary_key
based on semantics and exploring the codebase.