Skip to content

Commit

Permalink
Merge pull request #38 from sjwmoveon/patch-14
Browse files Browse the repository at this point in the history
Use `character varying` as output type for Redshift
  • Loading branch information
anero authored Nov 30, 2023
2 parents 33ed1bb + 6552b0f commit a6b0960
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions glue_job.tf
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ locals {

# Unsupported columnt types for Redshift: these will be replaced by the mapped type
unsupported_output_column_types = {
"hstore" = "string"
"jsonb" = "string"
"hstore" = "character varying"
"jsonb" = "character varying"
"numeric\\(3,2\\)" = "decimal(3,2)"
"timestamp without time zone" = "timestamp"
}
Expand Down

0 comments on commit a6b0960

Please sign in to comment.