mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-06 22:37:35 +08:00
21 lines
466 B
C
21 lines
466 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* parser.h
|
|
*
|
|
*
|
|
*
|
|
* Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $Id: parser.h,v 1.3 1998/02/26 04:42:51 momjian Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef PARSER_H
|
|
#define PARSER_H
|
|
|
|
#include <parser/parse_node.h>
|
|
|
|
extern QueryTreeList *parser(char *str, Oid *typev, int nargs);
|
|
|
|
#endif /* PARSER_H */
|