Skip to content

Commit

Permalink
Added EDITIONABLE clause to create_type (#4344)
Browse files Browse the repository at this point in the history
  • Loading branch information
madams51703 authored Nov 29, 2024
1 parent be8d069 commit 3f8074f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sql/plsql/PlSqlParser.g4
Original file line number Diff line number Diff line change
Expand Up @@ -1010,7 +1010,7 @@ dependent_exceptions_part
;

create_type
: CREATE (OR REPLACE)? TYPE (type_definition | type_body)
: CREATE (OR REPLACE)? (EDITIONABLE | NONEDITIONABLE)? TYPE (type_definition | type_body)
;

// Create Type Specific Clauses
Expand Down Expand Up @@ -9723,4 +9723,4 @@ numeric_function_name
| NVL
| ROUND
| SUM
;
;

0 comments on commit 3f8074f

Please sign in to comment.