summaryrefslogtreecommitdiff
path: root/src/include/commands/dbcommands.h
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>1998-08-24 01:14:24 +0000
committerBruce Momjian <bruce@momjian.us>1998-08-24 01:14:24 +0000
commitc0b01461db59a472f5817a8c6e99091b8a48ffc5 (patch)
tree8ea77fde00c4a8da22920d9d0aa7f8b8a77e67e0 /src/include/commands/dbcommands.h
parent9438fe5d091162136e96991da391a559e078aa23 (diff)
o note that now pg_database has a new attribuite "encoding" even
if MULTIBYTE is not enabled. So be sure to run initdb. o these patches are made against the latest source tree (after Bruce's massive patch, I think) BTW, I noticed that after running regression, the oid field of pg_type seems disappeared. regression=> select oid from pg_type; ERROR: attribute 'oid' not found this happens after the constraints test. This occures with/without my patches. strange... o pg_database_mb.h, pg_class_mb.h, pg_attribute_mb.h are no longer used, and shoud be removed. o GetDatabaseInfo() in utils/misc/database.c removed (actually in #ifdef 0). seems nobody uses. t-ishii@sra.co.jp
Diffstat (limited to 'src/include/commands/dbcommands.h')
-rw-r--r--src/include/commands/dbcommands.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/include/commands/dbcommands.h b/src/include/commands/dbcommands.h
index 2b0da3114df..0ee47857c8a 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.4 1998/07/26 04:31:23 scrappy Exp $
+ * $Id: dbcommands.h,v 1.5 1998/08/24 01:14:20 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -19,11 +19,7 @@
*/
#define SIGKILLDAEMON1 SIGTERM
-#ifdef MULTIBYTE
extern void createdb(char *dbname, char *dbpath, int encoding);
-#else
-extern void createdb(char *dbname, char *dbpath);
-#endif
extern void destroydb(char *dbname);
#endif /* DBCOMMANDS_H */