-
Notifications
You must be signed in to change notification settings - Fork 4.2k
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
🐛 Source Salesforce: Fix getting anyType
fields using BULK API
#7592
🐛 Source Salesforce: Fix getting anyType
fields using BULK API
#7592
Conversation
/test connector=connectors/source-salesforce
|
/test connector=connectors/source-salesforce
|
/test connector=connectors/source-salesforce
|
/publish connector=connectors/source-salesforce
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
let's close the PR after testing the new version with the user reporting the issue
@@ -10,6 +10,19 @@ There are two types of objects: | |||
To query an object, one must use [SOQL](https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/dome_query.htm), Salesforce’s proprietary SQL language. | |||
An example might be `SELECT * FROM <sobject.name> WHERE SystemModstamp > 2122-01-18T21:18:20.000Z`. | |||
|
|||
Because the `Salesforce` connector pulls all objects from `Salesforce` dynamically, then all streams are dynamically generated accordingly. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🎉
@@ -28,7 +28,7 @@ | |||
"airbyte_secret": true | |||
}, | |||
"start_date": { | |||
"description": "UTC date and time in the format 2017-01-25T00:00:00Z. Any data before this date will not be replicated.", | |||
"description": "UTC date and time in the format 2017-01-25T00:00:00Z. Any data before this date will not be replicated. Priority for filtering by `updated` fields, and only then by `created` fields if they are available for stream.", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"description": "UTC date and time in the format 2017-01-25T00:00:00Z. Any data before this date will not be replicated. Priority for filtering by `updated` fields, and only then by `created` fields if they are available for stream.", | |
"description": "UTC date and time in the format 2017-01-25T00:00:00Z. Any data before this date will not be replicated. This field uses the "updated" field if available, otherwise the "created" fields if they are available for a stream.", |
@sherifnada Could you provide information from the user if it appears, since I can't see the message for the ticket author in the github? |
@yevhenii-ldv the fix worked great! you're good to move forward :) |
…bytehq#7592) * Source Salesforce: Fix getting anyType fields using BULK API
What
resolves #6886.
How
Describe the solution
Recommended reading order
x.java
y.python
Pre-merge Checklist
Expand the relevant checklist and delete the others.
New Connector
Community member or Airbyter
airbyte_secret
./gradlew :airbyte-integrations:connectors:<name>:integrationTest
.README.md
bootstrap.md
. See description and examplesdocs/SUMMARY.md
docs/integrations/<source or destination>/<name>.md
including changelog. See changelog exampledocs/integrations/README.md
airbyte-integrations/builds.md
Airbyter
If this is a community PR, the Airbyte engineer reviewing this PR is responsible for the below items.
/test connector=connectors/<name>
command is passing./publish
command described hereUpdating a connector
Community member or Airbyter
airbyte_secret
./gradlew :airbyte-integrations:connectors:<name>:integrationTest
.README.md
bootstrap.md
. See description and examplesdocs/integrations/<source or destination>/<name>.md
including changelog. See changelog exampleAirbyter
If this is a community PR, the Airbyte engineer reviewing this PR is responsible for the below items.
/test connector=connectors/<name>
command is passing./publish
command described hereConnector Generator
-scaffold
in their name) have been updated with the latest scaffold by running./gradlew :airbyte-integrations:connector-templates:generator:testScaffoldTemplates
then checking in your changes