1 /*****************************************************************************
2 
3 Copyright (c) 1998, 2009, Oracle and/or its affiliates. All Rights Reserved.
4 
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License, version 2.0,
7 as published by the Free Software Foundation.
8 
9 This program is also distributed with certain software (including
10 but not limited to OpenSSL) that is licensed under separate terms,
11 as designated in a particular file or component or in included license
12 documentation.  The authors of MySQL hereby grant you an additional
13 permission to link the program and your derivative works with the
14 separately licensed software that they have included with MySQL.
15 
16 This program is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19 GNU General Public License, version 2.0, for more details.
20 
21 You should have received a copy of the GNU General Public License along with
22 this program; if not, write to the Free Software Foundation, Inc.,
23 51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA
24 
25 *****************************************************************************/
26 
27 /**************************************************//**
28 @file include/pars0types.h
29 SQL parser global types
30 
31 Created 1/11/1998 Heikki Tuuri
32 *******************************************************/
33 
34 #ifndef pars0types_h
35 #define pars0types_h
36 
37 struct pars_info_t;
38 struct pars_user_func_t;
39 struct pars_bound_lit_t;
40 struct pars_bound_id_t;
41 struct sym_node_t;
42 struct sym_tab_t;
43 struct pars_res_word_t;
44 struct func_node_t;
45 struct order_node_t;
46 struct proc_node_t;
47 struct elsif_node_t;
48 struct if_node_t;
49 struct while_node_t;
50 struct for_node_t;
51 struct exit_node_t;
52 struct return_node_t;
53 struct assign_node_t;
54 struct col_assign_node_t;
55 
56 typedef UT_LIST_BASE_NODE_T(sym_node_t)	sym_node_list_t;
57 
58 #endif
59