summaryrefslogtreecommitdiff
path: root/src/include/nodes
diff options
context:
space:
mode:
authorThomas G. Lockhart1997-11-07 06:38:51 +0000
committerThomas G. Lockhart1997-11-07 06:38:51 +0000
commit7d1f2f8a270681f463a1ec5e433688248c58cc97 (patch)
treec23582e8512cc958874f98963e1c75b9ef3e56b6 /src/include/nodes
parentd98f2f9985e4030a00fc41e21bd36474febe5741 (diff)
Support alternate database locations.
Diffstat (limited to 'src/include/nodes')
-rw-r--r--src/include/nodes/parsenodes.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/nodes/parsenodes.h b/src/include/nodes/parsenodes.h
index 6e9e49b1c01..6fd9631f67b 100644
--- a/src/include/nodes/parsenodes.h
+++ b/src/include/nodes/parsenodes.h
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: parsenodes.h,v 1.29 1997/10/28 15:10:39 vadim Exp $
+ * $Id: parsenodes.h,v 1.30 1997/11/07 06:38:38 thomas Exp $
*
*-------------------------------------------------------------------------
*/
@@ -473,6 +473,7 @@ typedef struct CreatedbStmt
{
NodeTag type;
char *dbname; /* database to create */
+ char *dbpath; /* location of database */
} CreatedbStmt;
/* ----------------------