-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #65 from rlsalcido24/dtmappings
Dtmappings
- Loading branch information
Showing
6 changed files
with
111 additions
and
9 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
{ | ||
"VARCHAR": {"source_name": "VARCHAR", "target_name": "STRING"}, | ||
"CHAR": {"source_name": "CHAR", "target_name": "STRING"}, | ||
"CHARACTER": {"source_name": "CHARACTER", "target_name": "STRING"}, | ||
"TEXT": {"source_name": "TEXT", "target_name": "STRING"}, | ||
"BPCHAR": {"source_name": "BPCHAR", "target_name": "STRING"}, | ||
"NCHAR": {"source_name": "NCHAR", "target_name": "STRING"}, | ||
"NVARCHAR": {"source_name": "NVARCHAR", "target_name": "STRING"}, | ||
"VARBYTE": {"source_name": "VARBYTE", "target_name": "BINARY"}, | ||
"BINARY VARYING": {"source_name": "BINARY VARYING", "target_name": "BINARY"}, | ||
"VARBINARY": {"source_name": "VARBINARY", "target_name": "BINARY"}, | ||
"INT2": {"source_name": "INT2", "target_name": "SMALLINT"}, | ||
"INT4": {"source_name": "INT4", "target_name": "INT"}, | ||
"INT8": {"source_name": "INT8", "target_name": "BIGINT"}, | ||
"NUMBER": {"source_name": "NUMBER", "target_name": "NUMERIC"}, | ||
"BYTEINT": {"source_name": "BYTEINT", "target_name": "BYTE"}, | ||
"FLOAT4": {"source_name": "FLOAT4", "target_name": "FLOAT"}, | ||
"FLOAT8": {"source_name": "FLOAT8", "target_name": "DOUBLE"}, | ||
"DOUBLE PRECISION": {"source_name": "DOUBLE PRECISION", "target_name": "DOUBLE"}, | ||
"TIME": {"source_name": "TIME", "target_name": "TIMESTAMP"}, | ||
"TIME WITHOUT TIME ZONE": {"source_name": "TIME WITHOUT TIME ZONE", "target_name": "TIMESTAMP"}, | ||
"TIME WITH TIME ZONE": {"source_name": "TIME WITH TIME ZONE", "target_name": "TIMESTAMP"}, | ||
"TIMETZ": {"source_name": "TIMETZ", "target_name": "TIMESTAMP"}, | ||
"TIMESTAMP WITHOUT TIME ZONE": {"source_name": "TIMESTAMP WITHOUT TIME ZONE", "target_name": "TIMESTAMP"}, | ||
"TIMESTAMPTZ": {"source_name": "TIMESTAMPTZ", "target_name": "TIMESTAMP"}, | ||
"TIMESTAMP WITH TIME ZONE": {"source_name": "TIMESTAMP WITH TIME ZONE", "target_name": "TIMESTAMP"} | ||
} |
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,20 @@ | ||
{ | ||
"VARCHAR": {"source_name": "VARCHAR", "target_name": "STRING"}, | ||
"CHAR": {"source_name": "CHAR", "target_name": "STRING"}, | ||
"CHARACTER": {"source_name": "CHARACTER", "target_name": "STRING"}, | ||
"TEXT": {"source_name": "TEXT", "target_name": "STRING"}, | ||
"VARBINARY": {"source_name": "VARBINARY", "target_name": "BINARY"}, | ||
"NUMBER": {"source_name": "NUMBER", "target_name": "NUMERIC"}, | ||
"BYTEINT": {"source_name": "BYTEINT", "target_name": "BYTE"}, | ||
"FLOAT": {"source_name": "FLOAT", "target_name": "DOUBLE"}, | ||
"FLOAT4": {"source_name": "FLOAT4", "target_name": "DOUBLE"}, | ||
"FLOAT8": {"source_name": "FLOAT8", "target_name": "DOUBLE"}, | ||
"DOUBLE PRECISION": {"source_name": "DOUBLE PRECISION", "target_name": "DOUBLE"}, | ||
"REAL": {"source_name": "REAL", "target_name": "DOUBLE"}, | ||
"TIME": {"source_name": "TIME", "target_name": "TIMESTAMP"}, | ||
"DATETIME": {"source_name": "DATETIME", "target_name": "TIMESTAMP"}, | ||
"TIMESTAMP_LTZ": {"source_name": "TIMESTAMP_LTZ", "target_name": "TIMESTAMP"}, | ||
"TIMESTAMP_NTZ": {"source_name": "TIMESTAMP_NTZ", "target_name": "TIMESTAMP"}, | ||
"TIMESTAMP_TZ": {"source_name": "TIMESTAMP_TZ", "target_name": "TIMESTAMP"}, | ||
"OBJECT": {"source_name": "OBJECT", "target_name": "STRUCT"} | ||
} |
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