summaryrefslogtreecommitdiff
path: root/src/include/access/heapam.h
diff options
context:
space:
mode:
authorPeter Eisentraut2000-01-22 14:20:56 +0000
committerPeter Eisentraut2000-01-22 14:20:56 +0000
commitfa5400c0a40eab95499da5a54d8a526593a1f243 (patch)
treea3f2e20f0822b7cb850d51045c19e4f22cc5acb0 /src/include/access/heapam.h
parent3f51bdafdca99e7f30c7198c218e66fe009a3dd9 (diff)
added ALTER TABLE DROP COLUMN, early version
Diffstat (limited to 'src/include/access/heapam.h')
-rw-r--r--src/include/access/heapam.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/access/heapam.h b/src/include/access/heapam.h
index 39da1553290..ad522297fd5 100644
--- a/src/include/access/heapam.h
+++ b/src/include/access/heapam.h
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: heapam.h,v 1.49 1999/12/16 22:19:58 wieck Exp $
+ * $Id: heapam.h,v 1.50 2000/01/22 14:20:52 petere Exp $
*
*-------------------------------------------------------------------------
*/
@@ -248,7 +248,7 @@ extern HeapAccessStatistics heap_access_stats; /* in stats.c */
/* heapam.c */
extern Relation heap_open(Oid relationId, LOCKMODE lockmode);
-extern Relation heap_openr(char *relationName, LOCKMODE lockmode);
+extern Relation heap_openr(const char *relationName, LOCKMODE lockmode);
extern void heap_close(Relation relation, LOCKMODE lockmode);
extern HeapScanDesc heap_beginscan(Relation relation, int atend,
Snapshot snapshot, unsigned nkeys, ScanKey key);