]> git.8kb.co.uk Git - pgpool-ii/pgpool-ii_2.2.5/blob - parser/parser.h
Attempt to send a proper failure message to frontend when authentication
[pgpool-ii/pgpool-ii_2.2.5] / parser / parser.h
1 /*-------------------------------------------------------------------------
2  *
3  * parser.h
4  *              Definitions for the "raw" parser (lex and yacc phases only)
5  *
6  *
7  * Portions Copyright (c) 2003-2008, PgPool Global Development Group
8  * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group
9  * Portions Copyright (c) 1994, Regents of the University of California
10  *
11  * $PostgreSQL: pgsql/src/include/parser/parser.h,v 1.19 2004/12/31 22:03:38 pgsql Exp $
12  *
13  *-------------------------------------------------------------------------
14  */
15 #ifndef PARSER_H
16 #define PARSER_H
17
18 #include "pg_list.h"
19 #include "parsenodes.h"
20
21 extern List *raw_parser(const char *str);
22 extern void free_parser(void);
23 extern int filtered_base_yylex(void);
24
25 #endif   /* PARSER_H */