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

Cleanup of source files where 'return' or 'var =' is alone on a line.

This commit is contained in:
Bruce Momjian
1999-02-03 21:18:02 +00:00
parent 3982368a4e
commit 9322950aa4
101 changed files with 422 additions and 743 deletions

View File

@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/optimizer/prep/prepunion.c,v 1.27 1998/09/01 04:29:59 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/optimizer/prep/prepunion.c,v 1.28 1999/02/03 21:16:46 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -222,8 +222,7 @@ plan_inherit_queries(Query *parse, Index rt_index)
List *inheritrtable = NIL;
List *union_relids = NIL;
union_relids =
find_all_inheritors(lconsi(rt_entry->relid,
union_relids = find_all_inheritors(lconsi(rt_entry->relid,
NIL),
NIL);
@@ -442,8 +441,7 @@ fix_parsetree_attnums_nodes(Index rt_index,
if (var->varno == rt_index && var->varattno != 0)
{
var->varattno =
get_attnum(new_typeid,
var->varattno = get_attnum(new_typeid,
get_attname(old_typeid, var->varattno));
}
}