summaryrefslogtreecommitdiff
path: root/innobase/pars/pars0grm.y
diff options
context:
space:
mode:
Diffstat (limited to 'innobase/pars/pars0grm.y')
-rw-r--r--innobase/pars/pars0grm.y10
1 files changed, 7 insertions, 3 deletions
diff --git a/innobase/pars/pars0grm.y b/innobase/pars/pars0grm.y
index ae8c5ab91ec..2d84ee296cd 100644
--- a/innobase/pars/pars0grm.y
+++ b/innobase/pars/pars0grm.y
@@ -4,17 +4,21 @@ SQL parser: input file for the GNU Bison parser generator
(c) 1997 Innobase Oy
Created 12/14/1997 Heikki Tuuri
+Published under the GPL version 2
+
+Look from pars0lex.l for instructions how to generate the C files for
+the InnoDB parser.
*******************************************************/
%{
/* The value of the semantic attribute is a pointer to a query tree node
que_node_t */
#define YYSTYPE que_node_t*
-
-#include "univ.i"
-#undef alloca
#define alloca mem_alloc
+
#include <math.h>
+
+#include "univ.i"
#include "pars0pars.h"
#include "mem0mem.h"
#include "que0types.h"