1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-17 06:41:09 +03:00

Support alternate database locations.

This commit is contained in:
Thomas G. Lockhart
1997-11-07 06:38:51 +00:00
parent d98f2f9985
commit 7d1f2f8a27
8 changed files with 273 additions and 254 deletions

View File

@ -9,7 +9,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/tcop/utility.c,v 1.27 1997/10/28 14:57:24 vadim Exp $
* $Header: /cvsroot/pgsql/src/backend/tcop/utility.c,v 1.28 1997/11/07 06:38:51 thomas Exp $
*
*-------------------------------------------------------------------------
*/
@ -569,7 +569,7 @@ ProcessUtility(Node * parsetree,
commandTag = "CREATEDB";
CHECK_IF_ABORTED();
createdb(stmt->dbname);
createdb(stmt->dbname, stmt->dbpath);
}
break;