Skip to content

Commit

Permalink
Update singer_sdk/sinks/sql.py
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon authored Jul 21, 2023
1 parent 6e905a6 commit 1844820
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion singer_sdk/sinks/sql.py
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ def bulk_insert_records(

# Create new record dicts with missing properties filled in with None
new_records = [
{name: record.get(name, None) for name in property_names}
{name: record.get(name) for name in property_names}
for record in conformed_records
]

Expand Down

0 comments on commit 1844820

Please sign in to comment.