Skip to content
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/IdentifiersParser.g4
Original file line number Diff line number Diff line change
Expand Up @@ -590,6 +590,7 @@ nonReserved
| KW_POOL | KW_ALLOC_FRACTION | KW_SCHEDULING_POLICY | KW_PATH | KW_MAPPING | KW_WORKLOAD | KW_MANAGEMENT | KW_ACTIVE | KW_UNMANAGED
| KW_DELTA | KW_CSV | KW_JSON | KW_BLOOMFILTER
| KW_CATALOG | KW_SCHEMA | KW_TABLE | KW_VIEW
| KW_STREAM
;

//The following SQL2011 reserved keywords are used as function name only, but not as identifiers.
Expand Down
2 changes: 1 addition & 1 deletion reverse_engineering/hqlToCollectionsVisitor.js
Original file line number Diff line number Diff line change
Expand Up @@ -1930,7 +1930,7 @@ const getTextFromStringLiteral = ctx => {
};

const mergeConstraints = constraints => {
return Object.values(constraints || []).reduce((mergedConstraint, constraint) => {
return _.flatten(constraints).reduce((mergedConstraint, constraint) => {
if (constraint.required) {
return { ...mergedConstraint, required: true };
}
Expand Down
2 changes: 1 addition & 1 deletion reverse_engineering/parser/Hive/HiveParser.interp

Large diffs are not rendered by default.

Loading
Loading