|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
*
|
|
|
|
* parser.c
|
|
|
|
* Main entry point/driver for PostgreSQL grammar
|
|
|
|
*
|
|
|
|
* Note that the grammar is not allowed to perform any table access
|
|
|
|
* (since we need to be able to do basic parsing even while inside an
|
|
|
|
* aborted transaction). Therefore, the data structures returned by
|
|
|
|
* the grammar are "raw" parsetrees that still need to be analyzed by
|
|
|
|
* analyze.c and related files.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
|
|
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
|
|
*
|
|
|
|
* IDENTIFICATION
|
|
|
|
* $PostgreSQL: pgsql/src/backend/parser/parser.c,v 1.65 2006/03/07 01:00:17 tgl Exp $
|
|
|
|
*
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "postgres.h"
|
|
|
|
|
|
|
|
#include "parser/gramparse.h"
|
|
|
|
#include "parser/parser.h"
|
|
|
|
|
|
|
|
|
|
|
|
List *parsetree; /* result of parsing is left here */
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* raw_parser
|
|
|
|
* Given a query in string form, do lexical and grammatical analysis.
|
|
|
|
*
|
|
|
|
* Returns a list of raw (un-analyzed) parse trees.
|
|
|
|
*/
|
|
|
|
List *
|
|
|
|
raw_parser(const char *str)
|
|
|
|
{
|
|
|
|
int yyresult;
|
|
|
|
|
|
|
|
parsetree = NIL; /* in case grammar forgets to set it */
|
|
|
|
|
|
|
|
scanner_init(str);
|
|
|
|
parser_init();
|
|
|
|
|
|
|
|
yyresult = base_yyparse();
|
|
|
|
|
|
|
|
scanner_finish();
|
|
|
|
|
|
|
|
if (yyresult) /* error */
|
|
|
|
return NIL;
|
|
|
|
|
|
|
|
return parsetree;
|
|
|
|
}
|