diff options
author | Bruce Momjian <bruce@momjian.us> | 1999-12-10 03:56:14 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1999-12-10 03:56:14 +0000 |
commit | 97dec77fab612cfa285f6bd3dd5463a0d55526b2 (patch) | |
tree | d4a9f4754c2f720820f9dbfd9f392ba76301415d /src/include/commands/dbcommands.h | |
parent | f6baabcd0bf227069423acf3ce767ad5701262ea (diff) | |
download | postgresql-97dec77fab612cfa285f6bd3dd5463a0d55526b2.tar.gz postgresql-97dec77fab612cfa285f6bd3dd5463a0d55526b2.zip |
Rename several destroy* functions/tags to drop*.
Diffstat (limited to 'src/include/commands/dbcommands.h')
-rw-r--r-- | src/include/commands/dbcommands.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/commands/dbcommands.h b/src/include/commands/dbcommands.h index bad0e1513d4..165b20505f4 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.10 1999/07/15 15:21:01 momjian Exp $ + * $Id: dbcommands.h,v 1.11 1999/12/10 03:56:06 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -23,6 +23,6 @@ #define SIGKILLDAEMON1 SIGTERM extern void createdb(char *dbname, char *dbpath, int encoding, CommandDest); -extern void destroydb(char *dbname, CommandDest); +extern void dropdb(char *dbname, CommandDest); #endif /* DBCOMMANDS_H */ |