-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🎉 Destination Redshift: Add "Loading Method" option to Redshift Desti…
…nation spec and UI (#13415) * airbyte-12709 Add "Loading Method" option to Redshift Destination spec. * airbyte-12709: Fixed unit tests. * airbyte-12709: Updated README.md. * airbyte-12709: change the number of PR in redshift.md. * airbyte-12709: Added backward compatibility for old json schema. * airbyte-12709: Fix PR comments. * airbyte-12709: Removed throwing an exception. Fixed PR comments. * airbyte-12709: Bump the airbyte version. * auto-bump connector version Co-authored-by: Octavia Squidington III <[email protected]>
- Loading branch information
1 parent
20bd923
commit b45014d
Showing
14 changed files
with
353 additions
and
245 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
.../io/airbyte/integrations/destination/redshift/constants/RedshiftDestinationConstants.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package io.airbyte.integrations.destination.redshift.constants; | ||
|
||
/** | ||
* Constant holder for Redshift Destination | ||
*/ | ||
public class RedshiftDestinationConstants { | ||
|
||
private RedshiftDestinationConstants() { | ||
} | ||
|
||
public static final String UPLOADING_METHOD = "uploading_method"; | ||
} |
Oops, something went wrong.