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