Skip to content

Commit 068ee07

Browse files
fix: Fix typo in hard_delete description (#578)
1 parent 46d2479 commit 068ee07

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ This target is tested with all actively supported [Python](https://devguide.pyth
3535
| use_copy | False | None | Use the COPY command to insert data. This is usually faster than INSERT statements. This option is only available for the postgres+psycopg dialect+driver combination. |
3636
| default_target_schema | False | melty | Postgres schema to send data to, example: tap-clickup |
3737
| activate_version | False | 1 | If set to false, the tap will ignore activate version messages. If set to true, add_record_metadata must be set to true as well. |
38-
| hard_delete | False | 0 | When activate version is sent from a tap this specefies if we should delete the records that don't match, or mark them with a date in the `_sdc_deleted_at` column. This config option is ignored if `activate_version` is set to false. |
38+
| hard_delete | False | 0 | When activate version is sent from a tap this specifies if we should delete the records that don't match, or mark them with a date in the `_sdc_deleted_at` column. This config option is ignored if `activate_version` is set to false. |
3939
| add_record_metadata | False | 1 | Note that this must be enabled for activate_version to work!This adds _sdc_extracted_at, _sdc_batched_at, and more to every table. See https://sdk.meltano.com/en/latest/implementation/record_metadata.html for more information. |
4040
| interpret_content_encoding | False | 0 | If set to true, the target will interpret the content encoding of the schema to determine how to store the data. Using this option may result in a more efficient storage of the data but may also result in an error if the data is not encoded as expected. |
4141
| sanitize_null_text_characters | False | 0 | If set to true, the target will sanitize null characters in char/text/varchar fields, as they are not supported by Postgres. See [postgres documentation](https://www.postgresql.org/docs/current/functions-string.html) for more information about chr(0) not being supported. |

target_postgres/target.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ def __init__(
201201
th.BooleanType,
202202
default=False,
203203
description=(
204-
"When activate version is sent from a tap this specefies "
204+
"When activate version is sent from a tap this specifies "
205205
+ "if we should delete the records that don't match, or mark "
206206
+ "them with a date in the `_sdc_deleted_at` column. This config "
207207
+ "option is ignored if `activate_version` is set to false."

0 commit comments

Comments
 (0)