mirror of
https://github.com/postgres/postgres.git
synced 2025-11-15 03:41:20 +03:00
Rename heap_create to heap_create_and_catatlog, rename heap_creatr to heap_create().
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user