1
0
mirror of https://github.com/postgres/postgres.git synced 2025-09-11 00:12:06 +03:00

Use defines rather than constants for types.

This commit is contained in:
Bruce Momjian
1998-07-20 19:21:45 +00:00
parent db48f7a153
commit 97ac8f7ffc
4 changed files with 24 additions and 18 deletions

View File

@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/optimizer/prep/preptlist.c,v 1.12 1998/07/12 21:29:17 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/optimizer/prep/preptlist.c,v 1.13 1998/07/20 19:21:44 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -105,14 +105,14 @@ preprocess_targetlist(List *tlist,
Var *var;
resdom = makeResdom(length(t_list) + 1,
27,
TIDOID,
-1,
"ctid",
0,
0,
1);
var = makeVar(result_relation, -1, 27, -1, 0, result_relation, -1);
var = makeVar(result_relation, -1, TIDOID, -1, 0, result_relation, -1);
ctid = makeNode(TargetEntry);
ctid->resdom = resdom;