Skip to content
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

Hck 7919 variant data type re to file #232

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions reverse_engineering/grammars/HiveLexer.g4
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@ KW_VARCHAR: V A R C H A R;
KW_ARRAY: A R R A Y;
KW_STRUCT: S T R U C T;
KW_MAP: M A P;
KW_VARIANT: V A R I A N T;
KW_UNIONTYPE: U N I O N T Y P E;
KW_REDUCE: R E D U C E;
KW_PARTITIONED: P A R T I T I O N E D;
Expand Down
1 change: 1 addition & 0 deletions reverse_engineering/grammars/HiveParser.g4
Original file line number Diff line number Diff line change
Expand Up @@ -1330,6 +1330,7 @@ primitiveType
| KW_DECIMAL (LPAREN Number (COMMA Number)? RPAREN)?
| KW_VARCHAR LPAREN Number RPAREN
| KW_CHAR LPAREN Number RPAREN
| KW_VARIANT
;

listType
Expand Down
5 changes: 4 additions & 1 deletion reverse_engineering/parser/Hive/HiveLexer.interp

Large diffs are not rendered by default.

5,307 changes: 2,659 additions & 2,648 deletions reverse_engineering/parser/Hive/HiveLexer.js

Large diffs are not rendered by default.

Loading