1997-11-25 17:07:18 -05:00
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
*
|
|
|
|
|
* parser.h
|
2003-04-29 18:13:11 -04:00
|
|
|
* Definitions for the "raw" parser (lex and yacc phases only)
|
1997-11-25 17:07:18 -05:00
|
|
|
*
|
|
|
|
|
*
|
2009-01-01 12:24:05 -05:00
|
|
|
* Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
|
2000-01-26 00:58:53 -05:00
|
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
1997-11-25 17:07:18 -05:00
|
|
|
*
|
2009-04-19 17:50:09 -04:00
|
|
|
* $PostgreSQL: pgsql/src/include/parser/parser.h,v 1.25 2009/04/19 21:50:08 tgl Exp $
|
1997-11-25 17:07:18 -05:00
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
#ifndef PARSER_H
|
|
|
|
|
#define PARSER_H
|
|
|
|
|
|
2008-05-11 20:00:54 -04:00
|
|
|
#include "nodes/pg_list.h"
|
|
|
|
|
|
2003-04-29 18:13:11 -04:00
|
|
|
extern List *raw_parser(const char *str);
|
2001-10-28 01:26:15 -05:00
|
|
|
|
2009-04-19 17:50:09 -04:00
|
|
|
extern char *pg_parse_string_token(const char *token);
|
|
|
|
|
|
2001-11-05 12:46:40 -05:00
|
|
|
#endif /* PARSER_H */
|