diff options
author | Bruce Momjian <bruce@momjian.us> | 1999-03-16 03:24:18 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1999-03-16 03:24:18 +0000 |
commit | 434762b55924c1414d5d66590a08dcabe865c9ac (patch) | |
tree | 5c59644da4f4fd2eb9ee9f832c3a5e8f9800cd2f /src/include/commands/dbcommands.h | |
parent | 787786085f42467fba1568e8524e33738b9d641f (diff) |
Here is a patch.
I have changed to call pg_exec_query_dest() instead of pg_exec_query().
Thanks.
Hiroshi Inoue
Diffstat (limited to 'src/include/commands/dbcommands.h')
-rw-r--r-- | src/include/commands/dbcommands.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/commands/dbcommands.h b/src/include/commands/dbcommands.h index 846309ac84e..48cec93bd75 100644 --- a/src/include/commands/dbcommands.h +++ b/src/include/commands/dbcommands.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: dbcommands.h,v 1.7 1999/02/13 23:21:18 momjian Exp $ + * $Id: dbcommands.h,v 1.8 1999/03/16 03:24:18 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -19,7 +19,7 @@ */ #define SIGKILLDAEMON1 SIGTERM -extern void createdb(char *dbname, char *dbpath, int encoding); -extern void destroydb(char *dbname); +extern void createdb(char *dbname, char *dbpath, int encoding, CommandDest); +extern void destroydb(char *dbname, CommandDest); #endif /* DBCOMMANDS_H */ |