Fix pg_dump bug in the database-level collation patch. "datcollate" and
[PostgreSQL.git] / src / include / parser / parser.h
blob62e2c593f480a46601c881a73cf428e26a0b0809
1 /*-------------------------------------------------------------------------
3 * parser.h
4 * Definitions for the "raw" parser (lex and yacc phases only)
7 * Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group
8 * Portions Copyright (c) 1994, Regents of the University of California
10 * $PostgreSQL$
12 *-------------------------------------------------------------------------
14 #ifndef PARSER_H
15 #define PARSER_H
17 #include "nodes/pg_list.h"
19 extern List *raw_parser(const char *str);
21 #endif /* PARSER_H */