mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-07 01:07:30 +08:00
the parsetree representation. As yet we don't *do* anything with schema names, just drop 'em on the floor; but you can enter schema-compatible command syntax, and there's even a primitive CREATE SCHEMA command. No doc updates yet, except to note that you can now extract a field from a function-returning-row's result with (foo(...)).fieldname.
27 lines
801 B
C
27 lines
801 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* analyze.h
|
|
*
|
|
*
|
|
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $Id: analyze.h,v 1.19 2002/03/21 16:01:53 tgl Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef ANALYZE_H
|
|
#define ANALYZE_H
|
|
|
|
#include "parser/parse_node.h"
|
|
|
|
extern List *parse_analyze(Node *parseTree, ParseState *parentParseState);
|
|
extern List *analyzeCreateSchemaStmt(CreateSchemaStmt *stmt);
|
|
|
|
extern void CheckSelectForUpdate(Query *qry);
|
|
|
|
/* This was exported to allow ADD CONSTRAINT to make use of it */
|
|
extern char *makeObjectName(char *name1, char *name2, char *typename);
|
|
|
|
#endif /* ANALYZE_H */
|