1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-18 17:42:25 +03:00

Rename Temp to Noname for noname tables.

This commit is contained in:
Bruce Momjian
1999-02-09 17:03:14 +00:00
parent 78511d8fe9
commit 318e593f03
21 changed files with 198 additions and 198 deletions

View File

@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/nodes/print.c,v 1.19 1999/01/27 00:36:28 tgl Exp $
* $Header: /cvsroot/pgsql/src/backend/nodes/print.c,v 1.20 1999/02/09 17:02:49 momjian Exp $
*
* HISTORY
* AUTHOR DATE MAJOR EVENT
@ -313,8 +313,8 @@ plannode_type(Plan *p)
case T_HashJoin:
return "HASHJOIN";
break;
case T_Temp:
return "TEMP";
case T_Noname:
return "NONAME";
break;
case T_Material:
return "MATERIAL";