1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-30 21:42:05 +03:00

Make it compile on Ultrix. Thanks Erik Bertelson.

This commit is contained in:
Bryan Henderson
1996-11-26 03:20:35 +00:00
parent 02c0eb6549
commit 46d58fba33
25 changed files with 66 additions and 36 deletions

View File

@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/parser/analyze.c,v 1.15 1996/11/13 20:48:55 scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/parser/analyze.c,v 1.16 1996/11/26 03:17:45 bryanh Exp $
*
*-------------------------------------------------------------------------
*/
@ -37,6 +37,8 @@
#include "optimizer/clauses.h"
#include "access/heapam.h"
#include "port-protos.h" /* strdup() */
/* convert the parse tree into a query tree */
static Query *transformStmt(ParseState *pstate, Node *stmt);