Skip to content

Commit

Permalink
Missing keywords in redshift (#2700)
Browse files Browse the repository at this point in the history
* Missing keywords in redshift
  • Loading branch information
ChristopheDuong authored Apr 1, 2021
1 parent d849744 commit 0b6a983
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion airbyte-integrations/bases/base-normalization/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ WORKDIR /airbyte

ENTRYPOINT ["/airbyte/entrypoint.sh"]

LABEL io.airbyte.version=0.1.15
LABEL io.airbyte.version=0.1.16
LABEL io.airbyte.name=airbyte/normalization
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,7 @@
}

# https://docs.aws.amazon.com/redshift/latest/dg/r_pg_keywords.html
# Some additional keywords not supported by redshift are missing from their docs...
REDSHIFT = {
"AES128",
"AES256",
Expand Down Expand Up @@ -159,6 +160,7 @@
"CURRENT_TIMESTAMP",
"CURRENT_USER",
"CURRENT_USER_ID",
"DATETIME",
"DEFAULT",
"DEFERRABLE",
"DEFLATE",
Expand Down Expand Up @@ -263,6 +265,7 @@
"TEXT255",
"TEXT32K",
"THEN",
"TIME",
"TIMESTAMP",
"TO",
"TOP",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public class DefaultNormalizationRunner implements NormalizationRunner {

private static final Logger LOGGER = LoggerFactory.getLogger(DefaultNormalizationRunner.class);

public static final String NORMALIZATION_IMAGE_NAME = "airbyte/normalization:0.1.15";
public static final String NORMALIZATION_IMAGE_NAME = "airbyte/normalization:0.1.16";

private final DestinationType destinationType;
private final ProcessBuilderFactory pbf;
Expand Down

0 comments on commit 0b6a983

Please sign in to comment.