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
|
|
|
*
|
|
|
|
|
*
|
2004-12-31 17:04:05 -05:00
|
|
|
* Portions Copyright (c) 1996-2005, 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
|
|
|
*
|
2004-12-31 17:04:05 -05:00
|
|
|
* $PostgreSQL: pgsql/src/include/parser/parser.h,v 1.19 2004/12/31 22:03:38 pgsql Exp $
|
1997-11-25 17:07:18 -05:00
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
#ifndef PARSER_H
|
|
|
|
|
#define PARSER_H
|
|
|
|
|
|
2003-04-29 18:13:11 -04:00
|
|
|
extern List *raw_parser(const char *str);
|
2001-10-28 01:26:15 -05:00
|
|
|
|
2001-11-05 12:46:40 -05:00
|
|
|
#endif /* PARSER_H */
|