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

Rename heap_create to heap_create_and_catatlog, rename heap_creatr to heap_create().

This commit is contained in:
Bruce Momjian
1997-11-28 04:40:40 +00:00
parent a8926e0461
commit c445ba331b
11 changed files with 52 additions and 50 deletions

View File

@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/commands/Attic/creatinh.c,v 1.19 1997/11/21 18:09:49 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/commands/Attic/creatinh.c,v 1.20 1997/11/28 04:39:48 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@ -137,7 +137,7 @@ DefineRelation(CreateStmt *stmt)
}
}
relationId = heap_create(relname, descriptor);
relationId = heap_create_and_catalog(relname, descriptor);
StoreCatalogInheritance(relationId, inheritList);
}