Skip to content

Commit

Permalink
remove incremental
Browse files Browse the repository at this point in the history
  • Loading branch information
KimPlv committed Sep 5, 2023
1 parent 3a5aa7c commit 9792d22
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
documentationUrl: https://docs.airbyte.com/integrations/destinations/salesforce
supported_destination_sync_modes:
- append
supportsIncremental: true
supportsIncremental: false
connectionSpecification:
$schema: http://json-schema.org/draft-07/schema#
title: Destination Salesforce
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"stream": {
"name": "append_stream",
"supported_sync_modes": [
"incremental"
"full_refresh"
],
"source_defined_cursor": false,
"json_schema": {
Expand All @@ -22,7 +22,7 @@
}
}
},
"sync_mode": "incremental",
"sync_mode": "full_refresh",
"destination_sync_mode": "append"
}
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ def configured_catalog_fixture() -> ConfiguredAirbyteCatalog:
}

append_stream = ConfiguredAirbyteStream(
stream=AirbyteStream(name="append_stream", json_schema=stream_schema, supported_sync_modes=[SyncMode.incremental]),
sync_mode=SyncMode.incremental,
stream=AirbyteStream(name="append_stream", json_schema=stream_schema, supported_sync_modes=[SyncMode.full_refresh]),
sync_mode=SyncMode.full_refresh,
destination_sync_mode=DestinationSyncMode.append,
)
return ConfiguredAirbyteCatalog(streams=[append_stream])
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"type": "RECORD", "record": {"stream": "append_stream", "emitted_at": 1664705198575, "data": { "Id": "00169000035I068AAC", "Name": null, "phone_number_4__c":"06"}}}
{"type": "RECORD", "record": {"stream": "append_stream", "emitted_at": 1664705198575, "data": { "Id": "0016900003BTkScAAL", "Name": "Data test", "phone_number_4__c":"06", "ceci_est_test": "un_test"}}}

0 comments on commit 9792d22

Please sign in to comment.