1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-13 16:22:44 +03:00

Rename heap_destroyr to heap_destroy, heap_destroy to heap_destroy_with_catalog.

This commit is contained in:
Bruce Momjian
1997-11-28 17:28:02 +00:00
parent c445ba331b
commit 002796b5ca
12 changed files with 47 additions and 47 deletions

View File

@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/commands/Attic/recipe.c,v 1.14 1997/11/28 04:39:53 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/commands/Attic/recipe.c,v 1.15 1997/11/28 17:27:08 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -1047,7 +1047,7 @@ tg_parseSubQuery(TgRecipe * r, TgNode * n, TeeInfo * teeInfo)
len = length(q->qtrees[0]->targetList);
tupdesc = rel->rd_att;
relid = heap_create_and_catalog(
relid = heap_create_with_catalog(
child->nodeElem->outTypes->val[0], tupdesc);
}
else
@@ -1072,7 +1072,7 @@ tg_parseSubQuery(TgRecipe * r, TgNode * n, TeeInfo * teeInfo)
}
else
{
relid = heap_create_and_catalog(
relid = heap_create_with_catalog(
child->nodeElem->outTypes->val[0], tupdesc);
}
}