summaryrefslogtreecommitdiff
path: root/src/include/catalog/heap.h
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2000-01-22 14:20:56 +0000
committerPeter Eisentraut <peter_e@gmx.net>2000-01-22 14:20:56 +0000
commitfa5400c0a40eab95499da5a54d8a526593a1f243 (patch)
treea3f2e20f0822b7cb850d51045c19e4f22cc5acb0 /src/include/catalog/heap.h
parent3f51bdafdca99e7f30c7198c218e66fe009a3dd9 (diff)
downloadpostgresql-fa5400c0a40eab95499da5a54d8a526593a1f243.tar.gz
added ALTER TABLE DROP COLUMN, early version
Diffstat (limited to 'src/include/catalog/heap.h')
-rw-r--r--src/include/catalog/heap.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/catalog/heap.h b/src/include/catalog/heap.h
index 4370247a6b..5e8fd47ba3 100644
--- a/src/include/catalog/heap.h
+++ b/src/include/catalog/heap.h
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: heap.h,v 1.26 1999/12/10 03:56:05 momjian Exp $
+ * $Id: heap.h,v 1.27 2000/01/22 14:20:53 petere Exp $
*
*-------------------------------------------------------------------------
*/
@@ -21,7 +21,7 @@ typedef struct RawColumnDefault
Node *raw_default; /* default value (untransformed parse tree) */
} RawColumnDefault;
-extern Oid RelnameFindRelid(char *relname);
+extern Oid RelnameFindRelid(const char *relname);
extern Relation heap_create(char *relname, TupleDesc att,
bool isnoname, bool istemp, bool storage_create);
extern bool heap_storage_create(Relation rel);
@@ -29,7 +29,7 @@ extern bool heap_storage_create(Relation rel);
extern Oid heap_create_with_catalog(char *relname, TupleDesc tupdesc,
char relkind, bool istemp);
-extern void heap_drop_with_catalog(char *relname);
+extern void heap_drop_with_catalog(const char *relname);
extern void heap_truncate(char *relname);
extern void heap_drop(Relation rel);