1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-23 03:21:12 +03:00

added ALTER TABLE DROP COLUMN, early version

This commit is contained in:
Peter Eisentraut
2000-01-22 14:20:56 +00:00
parent 3f51bdafdc
commit fa5400c0a4
19 changed files with 286 additions and 82 deletions

View File

@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/heap/heapam.c,v 1.63 2000/01/10 06:30:50 inoue Exp $
* $Header: /cvsroot/pgsql/src/backend/access/heap/heapam.c,v 1.64 2000/01/22 14:20:43 petere Exp $
*
*
* INTERFACE ROUTINES
@ -562,7 +562,7 @@ heap_open(Oid relationId, LOCKMODE lockmode)
* ----------------
*/
Relation
heap_openr(char *relationName, LOCKMODE lockmode)
heap_openr(const char *relationName, LOCKMODE lockmode)
{
Relation r;