1997-11-25 17:07:18 -05:00
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
*
|
|
|
|
|
* parser.h
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
*
|
2001-01-24 14:43:33 -05:00
|
|
|
* Portions Copyright (c) 1996-2001, 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
|
|
|
*
|
2001-01-24 14:43:33 -05:00
|
|
|
* $Id: parser.h,v 1.8 2001/01/24 19:43:27 momjian Exp $
|
1997-11-25 17:07:18 -05:00
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
#ifndef PARSER_H
|
|
|
|
|
#define PARSER_H
|
|
|
|
|
|
1999-07-15 19:04:24 -04:00
|
|
|
#include "parser/parse_node.h"
|
1997-11-25 17:07:18 -05:00
|
|
|
|
1999-05-13 03:29:22 -04:00
|
|
|
extern List *parser(char *str, Oid *typev, int nargs);
|
1997-11-25 17:07:18 -05:00
|
|
|
|
1998-09-01 00:40:42 -04:00
|
|
|
#endif /* PARSER_H */
|