Rename heap_create to heap_create_and_catatlog, rename heap_creatr to heap_create().
authorBruce Momjian
Fri, 28 Nov 1997 04:40:40 +0000 (04:40 +0000)
committerBruce Momjian
Fri, 28 Nov 1997 04:40:40 +0000 (04:40 +0000)
src/backend/bootstrap/bootparse.y
src/backend/catalog/heap.c
src/backend/catalog/index.c
src/backend/commands/cluster.c
src/backend/commands/creatinh.c
src/backend/commands/recipe.c
src/backend/executor/execAmi.c
src/backend/executor/execMain.c
src/backend/executor/nodeTee.c
src/backend/storage/large_object/inv_api.c
src/include/catalog/heap.h

index 05bbd682076245ea62d1d7afe6cea57e8225223d..0cdb7269c71926ecf04a6c9cee8576f1aaf4cbd3 100644 (file)
@@ -8,7 +8,7 @@
  *
  *
  * IDENTIFICATION
- *   $Header: /cvsroot/pgsql/src/backend/bootstrap/bootparse.y,v 1.7 1997/11/24 05:07:54 momjian Exp $
+ *   $Header: /cvsroot/pgsql/src/backend/bootstrap/bootparse.y,v 1.8 1997/11/28 04:39:25 momjian Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -170,7 +170,7 @@ CreateStmt:
                        if (DebugMode)
                            puts("creating bootstrap relation");
                        tupdesc = CreateTupleDesc(numattr,attrtypes);
-                       reldesc = heap_creatr(LexIDStr($3), tupdesc);
+                       reldesc = heap_create(LexIDStr($3), tupdesc);
                        if (DebugMode)
                            puts("bootstrap relation created ok");
                    }
@@ -178,10 +178,10 @@ CreateStmt:
                    {
                        Oid id;
                        TupleDesc tupdesc;
-                       /* extern Oid heap_create();*/
+                       /* extern Oid heap_create_and_catalog();*/
 
                        tupdesc = CreateTupleDesc(numattr,attrtypes);
-                       id = heap_create(LexIDStr($3), tupdesc);
+                       id = heap_create_and_catalog(LexIDStr($3), tupdesc);
                        if (!Quiet)
                            printf("CREATED relation %s with OID %d\n",
                                   LexIDStr($3), id);
index 17e68844db75bc850f3443031c2af61045d5c13a..77fd71676c745e8daa37852b6f3386f2b68e063c 100644 (file)
@@ -7,17 +7,18 @@
  *
  *
  * IDENTIFICATION
- *   $Header: /cvsroot/pgsql/src/backend/catalog/heap.c,v 1.37 1997/11/26 04:50:19 momjian Exp $
+ *   $Header: /cvsroot/pgsql/src/backend/catalog/heap.c,v 1.38 1997/11/28 04:39:34 momjian Exp $
  *
  * INTERFACE ROUTINES
- *     heap_creatr()           - Create an uncataloged heap relation
- *     heap_create()           - Create a cataloged relation
+ *     heap_create()           - Create an uncataloged heap relation
+ *     heap_create_and_catalog() - Create a cataloged relation
  *     heap_destroy()          - Removes named relation from catalogs
  *
  * NOTES
  *   this code taken from access/heap/create.c, which contains
- *   the old heap_creater, amcreate, and amdestroy.  those routines
- *   will soon call these routines using the function manager,
+ *   the old heap_create_and_catalogr, amcreate, and amdestroy.
+ *   those routines will soon call these routines using the function
+ *   manager,
  *   just like the poorly named "NewXXX" routines do.  The
  *   "New" routines are all going to die soon, once and for all!
  *     -cim 1/13/91
@@ -148,7 +149,7 @@ static TempRelList *tempRels = NULL;
 
 
 /* ----------------------------------------------------------------
- *     heap_creatr     - Create an uncataloged heap relation
+ *     heap_create     - Create an uncataloged heap relation
  *
  *     Fields relpages, reltuples, reltuples, relkeys, relhistory,
  *     relisindexed, and relkind of rdesc->rd_rel are initialized
@@ -160,12 +161,12 @@ static TempRelList *tempRels = NULL;
  *     into the transaction context block.
  *
  *
- * if heap_creatr is called with "" as the name, then heap_creatr will create a
- * temporary name  "temp_$RELOID" for the relation
+ * if heap_create is called with "" as the name, then heap_create will create
+ * a temporary name    "temp_$RELOID" for the relation
  * ----------------------------------------------------------------
  */
 Relation
-heap_creatr(char *name,
+heap_create(char *name,
            TupleDesc tupDesc)
 {
    register unsigned i;
@@ -331,7 +332,7 @@ heap_creatr(char *name,
 
 
 /* ----------------------------------------------------------------
- *     heap_create     - Create a cataloged relation
+ *     heap_create_and_catalog     - Create a cataloged relation
  *
  *     this is done in 6 steps:
  *
@@ -342,8 +343,8 @@ heap_creatr(char *name,
  *        preforms a scan to ensure that no relation with the
  *        same name already exists.
  *
- *     3) heap_creater() is called to create the new relation on
- *        disk.
+ *     3) heap_create_and_catalogr() is called to create the new relation
+ *        on disk.
  *
  *     4) TypeDefine() is called to define a new type corresponding
  *        to the new relation.
@@ -375,8 +376,8 @@ heap_creatr(char *name,
  *     create new relation
  *     insert new relation into attribute catalog
  *
- *     Should coordinate with heap_creater().  Either it should
- *     not be called or there should be a way to prevent
+ *     Should coordinate with heap_create_and_catalogr().  Either
+ *     it should not be called or there should be a way to prevent
  *     the relation from being removed at the end of the
  *     transaction if it is successful ('u'/'r' may be enough).
  *     Also, if the transaction does not commit, then the
@@ -738,14 +739,14 @@ addNewRelationType(char *typeName, Oid new_rel_oid)
 }
 
 /* --------------------------------
- *     heap_create
+ *     heap_create_and_catalog
  *
  *     creates a new cataloged relation.  see comments above.
  * --------------------------------
  */
 Oid
-heap_create(char relname[],
-           TupleDesc tupdesc)
+heap_create_and_catalog(char relname[],
+                       TupleDesc tupdesc)
 {
    Relation    pg_class_desc;
    Relation    new_rel_desc;
@@ -782,11 +783,11 @@ heap_create(char relname[],
     *  create an uncataloged relation and pull its relation oid
     *  from the newly formed relation descriptor.
     *
-    *  Note: The call to heap_creatr() does all the "real" work
+    *  Note: The call to heap_create() does all the "real" work
     *  of creating the disk file for the relation.
     * ----------------
     */
-   new_rel_desc = heap_creatr(relname, tupdesc);
+   new_rel_desc = heap_create(relname, tupdesc);
    new_rel_oid = new_rel_desc->rd_att->attrs[0]->attrelid;
 
    /* ----------------
index deb908e24f80b1f2d1fd8b93ced5930db332e061..408908a140ac3f6fee2b6e968e3bf4d1f47c1252 100644 (file)
@@ -7,7 +7,7 @@
  *
  *
  * IDENTIFICATION
- *   $Header: /cvsroot/pgsql/src/backend/catalog/index.c,v 1.30 1997/11/25 21:58:43 momjian Exp $
+ *   $Header: /cvsroot/pgsql/src/backend/catalog/index.c,v 1.31 1997/11/28 04:39:38 momjian Exp $
  *
  *
  * INTERFACE ROUTINES
@@ -1120,7 +1120,7 @@ index_create(char *heapRelationName,
     *  create the index relation
     * ----------------
     */
-   indexRelation = heap_creatr(indexRelationName,
+   indexRelation = heap_create(indexRelationName,
                                indexTupDesc);
 
    /* ----------------
index 139a1b2ff678a7e7239d74b47b6919c4a4a35fae..de0e478860d368b7954fed861328e8bffb526419 100644 (file)
@@ -14,7 +14,7 @@
  *
  *
  * IDENTIFICATION
- *   $Header: /cvsroot/pgsql/src/backend/commands/cluster.c,v 1.17 1997/11/21 18:09:46 momjian Exp $
+ *   $Header: /cvsroot/pgsql/src/backend/commands/cluster.c,v 1.18 1997/11/28 04:39:43 momjian Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -209,13 +209,13 @@ copy_heap(Oid OIDOldHeap)
    OldHeapDesc = RelationGetTupleDescriptor(OldHeap);
 
    /*
-    * Need to make a copy of the tuple descriptor, heap_create modifies
-    * it.
+    * Need to make a copy of the tuple descriptor, heap_create_and_catalog
+    * modifies it.
     */
 
    tupdesc = CreateTupleDescCopy(OldHeapDesc);
 
-   OIDNewHeap = heap_create(NewName, tupdesc);
+   OIDNewHeap = heap_create_and_catalog(NewName, tupdesc);
 
    if (!OidIsValid(OIDNewHeap))
        elog(WARN, "clusterheap: cannot create temporary heap relation\n");
index 07c6f9ad7de5f09ce01560a90237adb503afa5c3..36c36dd38086cfd3c2eec50df63979b5e0318db8 100644 (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);
 }
index 5b77b732a8827765308d2acb648d6769e8dec020..315a62bf42a8f57c9786392b59ab5dca4394f365 100644 (file)
@@ -7,7 +7,7 @@
  *
  *
  * IDENTIFICATION
- *   $Header: /cvsroot/pgsql/src/backend/commands/Attic/recipe.c,v 1.13 1997/11/25 21:59:00 momjian Exp $
+ *   $Header: /cvsroot/pgsql/src/backend/commands/Attic/recipe.c,v 1.14 1997/11/28 04:39:53 momjian Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -1047,7 +1047,8 @@ tg_parseSubQuery(TgRecipe * r, TgNode * n, TeeInfo * teeInfo)
                len = length(q->qtrees[0]->targetList);
                tupdesc = rel->rd_att;
 
-               relid = heap_create(child->nodeElem->outTypes->val[0], tupdesc);
+               relid = heap_create_and_catalog(
+                       child->nodeElem->outTypes->val[0], tupdesc);
            }
            else
            {
@@ -1071,8 +1072,8 @@ tg_parseSubQuery(TgRecipe * r, TgNode * n, TeeInfo * teeInfo)
                }
                else
                {
-                   relid = heap_create(child->nodeElem->outTypes->val[0],
-                                       tupdesc);
+                   relid = heap_create_and_catalog(
+                           child->nodeElem->outTypes->val[0], tupdesc);
                }
            }
        }
index 5ae699df9801dd450669729467a5bb2ed5260a99..15adc2071580897f839c5a1912407cefc029f657 100644 (file)
@@ -7,7 +7,7 @@
  *
  *
  * IDENTIFICATION
- *   $Header: /cvsroot/pgsql/src/backend/executor/execAmi.c,v 1.11 1997/11/27 02:23:01 momjian Exp $
+ *   $Header: /cvsroot/pgsql/src/backend/executor/execAmi.c,v 1.12 1997/11/28 04:40:03 momjian Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -443,10 +443,10 @@ ExecCreatR(TupleDesc tupType,
 */
 
        /*
-        * heap_creatr creates a name if the argument to heap_creatr is
+        * heap_create creates a name if the argument to heap_create is
         * '\0 '
         */
-       relDesc = heap_creatr("", tupType);
+       relDesc = heap_create("", tupType);
    }
    else
    {
index 4eb368978584259c68de623ba4d7cb13cece8322..466832426702fca663b38c9466ad200ba19dd72c 100644 (file)
@@ -26,7 +26,7 @@
  *
  *
  * IDENTIFICATION
- *   $Header: /cvsroot/pgsql/src/backend/executor/execMain.c,v 1.33 1997/11/24 05:08:20 momjian Exp $
+ *   $Header: /cvsroot/pgsql/src/backend/executor/execMain.c,v 1.34 1997/11/28 04:40:08 momjian Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -572,7 +572,7 @@ InitPlan(CmdType operation, Query *parseTree, Plan *plan, EState *estate)
                /* fixup to prevent zero-length columns in create */
                setVarAttrLenForCreateTable(tupdesc, targetList, rangeTable);
 
-               intoRelationId = heap_create(intoName, tupdesc);
+               intoRelationId = heap_create_and_catalog(intoName, tupdesc);
 #ifdef NOT_USED                    /* it's copy ... */
                resetVarAttrLenForCreateTable(tupdesc);
 #endif
index 90dfc1895156ad0b35ae7baa9493eeaa8389468f..8cae9dff305e193993dc8a42b6a19c3b519d76cc 100644 (file)
@@ -15,7 +15,7 @@
  *     ExecEndTee
  *
  * IDENTIFICATION
- *   $Header: /cvsroot/pgsql/src/backend/executor/Attic/nodeTee.c,v 1.11 1997/11/21 18:10:08 momjian Exp $
+ *   $Header: /cvsroot/pgsql/src/backend/executor/Attic/nodeTee.c,v 1.12 1997/11/28 04:40:12 momjian Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -167,8 +167,8 @@ ExecInitTee(Tee *node, EState *currentEstate, Plan *parent)
        if (RelationIsValid(r))
            bufferRel = heap_openr(teeState->tee_bufferRelname);
        else
-           bufferRel = heap_open(heap_create(teeState->tee_bufferRelname,
-                                             tupType));
+           bufferRel = heap_open(
+               heap_create_and_catalog(teeState->tee_bufferRelname, tupType));
    }
    else
    {
@@ -176,8 +176,8 @@ ExecInitTee(Tee *node, EState *currentEstate, Plan *parent)
                "ttemp_%d",     /* 'ttemp' for 'tee' temporary */
                newoid());
 /*     bufferRel = ExecCreatR(len, tupType, _TEMP_RELATION_ID); */
-       bufferRel = heap_open(heap_create(teeState->tee_bufferRelname,
-                                         tupType));
+       bufferRel = heap_open(
+               heap_create_and_catalog(teeState->tee_bufferRelname, tupType));
    }
 
    teeState->tee_bufferRel = bufferRel;
index 1575da83c3143f5e8769752222b9377ba3c5b3c3..9e41f6f881611e99bb0cf9d8f4244df5d1fffa6d 100644 (file)
@@ -8,7 +8,7 @@
  *
  *
  * IDENTIFICATION
- *   $Header: /cvsroot/pgsql/src/backend/storage/large_object/inv_api.c,v 1.22 1997/11/21 19:02:37 momjian Exp $
+ *   $Header: /cvsroot/pgsql/src/backend/storage/large_object/inv_api.c,v 1.23 1997/11/28 04:40:28 momjian Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -139,7 +139,7 @@ inv_create(int flags)
     * be located on whatever storage manager the user requested.
     */
 
-   heap_create(objname, tupdesc);
+   heap_create_and_catalog(objname, tupdesc);
 
    /* make the relation visible in this transaction */
    CommandCounterIncrement();
index ac13ab6d75aa2fca627ed353b8d692b7a087b48e..38cbecfc419eebd3e5f3217fc56e6cfcf169aa40 100644 (file)
@@ -6,7 +6,7 @@
  *
  * Copyright (c) 1994, Regents of the University of California
  *
- * $Id: heap.h,v 1.8 1997/11/21 18:11:56 momjian Exp $
+ * $Id: heap.h,v 1.9 1997/11/28 04:40:40 momjian Exp $
  *
  *-------------------------------------------------------------------------
  */
 
 #include 
 
-extern Relation heap_creatr(char *relname, TupleDesc att);
+extern Relation heap_create(char *relname, TupleDesc att);
 
 extern Oid
-heap_create(char relname[],    TupleDesc tupdesc);
+heap_create_and_catalog(char relname[],    TupleDesc tupdesc);
 
 extern void heap_destroy(char relname[]);
 extern void heap_destroyr(Relation r);