We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae3711f commit f70ba8bCopy full SHA for f70ba8b
src/pegjs/oracle.pegjs
@@ -2076,9 +2076,24 @@ column_clauses
2076
column_clauses_action_option
2077
= add_column_clause
2078
2079
+// TODO: missing out_of_line_part_storage
2080
add_column_clause
2081
= action:KW_ADD _
- column:(column_definition / virtua_column_definition)
2082
+ columns:(
2083
+ c:column { return [c]; } /
2084
+ LPAR _ x:column xs:(_ COMMA _ c:column { return c; })* _ RPAR { return [x, ...xs]; }
2085
+ ) _
2086
+ properties:column_properties? _ {
2087
+ return {
2088
+ action,
2089
+ columns,
2090
+ properties,
2091
+ };
2092
+ }
2093
+
2094
+column
2095
+ = column_definition
2096
+ / virtua_column_definition
2097
2098
virtua_column_definition
2099
= name:identifier_name _
0 commit comments