*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 2.326 2002/06/17 20:27:43 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 2.327 2002/06/17 20:38:04 momjian Exp $
*
* HISTORY
* AUTHOR DATE MAJOR EVENT
%type OptSchemaName
%type OptSchemaEltList
-%type TriggerActionTime, TriggerForSpec, opt_trusted, opt_procedural
+%type TriggerActionTime, TriggerForSpec, opt_trusted
%type opt_lancompiler
%type TriggerEvents
%type for_update_clause, opt_for_update_clause, update_list
%type opt_all
%type opt_table
-%type opt_chain, opt_trans
+%type opt_chain
%type join_outer, join_qual
%type join_type
%type opt_interval
%type overlay_placing, substr_from, substr_for
-%type opt_binary, opt_using, opt_instead, opt_cursor, opt_with
+%type opt_binary, opt_instead, opt_cursor
%type opt_with_copy, index_opt_unique, opt_verbose, opt_full
-%type opt_freeze, analyze_keyword
+%type opt_freeze
%type copy_dirn, direction, reindex_type, drop_type,
opt_column, event, comment_type
;
-opt_with: WITH { $$ = TRUE; }
- | /*EMPTY*/ { $$ = TRUE; }
+opt_with: WITH {}
+ | /*EMPTY*/ {}
;
/*****************************************************************************
| /*EMPTY*/ { $$ = "\t"; }
;
-opt_using: USING { $$ = TRUE; }
- | /*EMPTY*/ { $$ = TRUE; }
+opt_using: USING {}
+ | /*EMPTY*/ {}
;
copy_null: WITH NULL_P AS Sconst { $$ = $4; }
;
opt_procedural:
- PROCEDURAL { $$ = TRUE; }
- | /*EMPTY*/ { $$ = TRUE; }
+ PROCEDURAL {}
+ | /*EMPTY*/ {}
;
/*****************************************************************************
| PRIOR { $$ = -1; }
;
-from_in: IN_P { }
- | FROM { }
+from_in: IN_P {}
+ | FROM {}
;
}
;
-opt_trans: WORK { $$ = TRUE; }
- | TRANSACTION { $$ = TRUE; }
- | /*EMPTY*/ { $$ = TRUE; }
+opt_trans: WORK {}
+ | TRANSACTION {}
+ | /*EMPTY*/ {}
;
opt_chain: AND NO CHAIN { $$ = FALSE; }
;
analyze_keyword:
- ANALYZE { $$ = TRUE; }
- | ANALYSE /* British */ { $$ = TRUE; }
+ ANALYZE {}
+ | ANALYSE /* British */ {}
;
opt_verbose: