@@ -2215,7 +2215,7 @@ storage_table_clause
22152215
22162216// https://docs.oracle.com/database/121/SQLRF/statements_4008.htm#SQLRF56110
22172217unified_auditing
2218- : {self .isVersion12()} ?
2218+ : {this .isVersion12()} ?
22192219 AUDIT (POLICY policy_name ((BY | EXCEPT ) audit_user (' ,' audit_user)* )?
22202220 (WHENEVER NOT ? SUCCESSFUL )?
22212221 | CONTEXT NAMESPACE oracle_namespace
@@ -2243,11 +2243,11 @@ audit_traditional
22432243 ;
22442244
22452245audit_direct_path
2246- : {self .isVersion12()} ? DIRECT_PATH auditing_by_clause
2246+ : {this .isVersion12()} ? DIRECT_PATH auditing_by_clause
22472247 ;
22482248
22492249audit_container_clause
2250- : {self .isVersion12()} ? (CONTAINER EQUALS_OP (CURRENT | ALL ))
2250+ : {this .isVersion12()} ? (CONTAINER EQUALS_OP (CURRENT | ALL ))
22512251 ;
22522252
22532253audit_operation_clause
@@ -2289,7 +2289,7 @@ auditing_on_clause
22892289 : ON ( object_name
22902290 | DIRECTORY regular_id
22912291 | MINING MODEL model_name
2292- | {self .isVersion12()} ? SQL TRANSLATION PROFILE profile_name
2292+ | {this .isVersion12()} ? SQL TRANSLATION PROFILE profile_name
22932293 | DEFAULT
22942294 )
22952295 ;
@@ -2317,7 +2317,7 @@ sql_statement_shortcut
23172317 | MATERIALIZED VIEW
23182318 | NOT EXISTS
23192319 | OUTLINE
2320- | {self .isVersion12()} ? PLUGGABLE DATABASE
2320+ | {this .isVersion12()} ? PLUGGABLE DATABASE
23212321 | PROCEDURE
23222322 | PROFILE
23232323 | PUBLIC DATABASE LINK
@@ -2550,11 +2550,11 @@ credential_name
25502550 ;
25512551
25522552library_editionable
2553- : {self .isVersion12()} ? (EDITIONABLE | NONEDITIONABLE )
2553+ : {this .isVersion12()} ? (EDITIONABLE | NONEDITIONABLE )
25542554 ;
25552555
25562556library_debug
2557- : {self .isVersion12()} ? DEBUG
2557+ : {this .isVersion12()} ? DEBUG
25582558 ;
25592559
25602560
@@ -2623,7 +2623,7 @@ alter_view
26232623 ;
26242624
26252625alter_view_editionable
2626- : {self .isVersion12()} ? (EDITIONABLE | NONEDITIONABLE )
2626+ : {this .isVersion12()} ? (EDITIONABLE | NONEDITIONABLE )
26272627 ;
26282628
26292629// https://docs.oracle.com/en/database/oracle/oracle-database/21/sqlrf/CREATE-VIEW.html
@@ -4222,7 +4222,7 @@ partial_database_recovery
42224222 ;
42234223
42244224partial_database_recovery_10g
4225- : {self .isVersion10()} ? STANDBY
4225+ : {this .isVersion10()} ? STANDBY
42264226 ( TABLESPACE tablespace (' ,' tablespace)*
42274227 | DATAFILE CHAR_STRING | filenumber (' ,' CHAR_STRING | filenumber)*
42284228 )
@@ -5046,7 +5046,7 @@ lob_partition_storage
50465046 ;
50475047
50485048period_definition
5049- : {self .isVersion12()} ? PERIOD FOR column_name
5049+ : {this .isVersion12()} ? PERIOD FOR column_name
50505050 ( ' (' start_time_column ' ,' end_time_column ' )' )?
50515051 ;
50525052
0 commit comments