1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-09 22:41:56 +03:00

Another PGINDENT run that changes variable indenting and case label indenting. Also static variable indenting.

This commit is contained in:
Bruce Momjian
1997-09-08 02:41:22 +00:00
parent a90f12fd9d
commit 319dbfa736
632 changed files with 28301 additions and 28220 deletions
contrib
src
backend
access
bootstrap
catalog
commands
executor
lib
libpq
main
nodes
optimizer
parser
port
postmaster
regex
rewrite
storage
tcop
tioga
utils
bin
include
access
bootstrap
c.h
catalog
commands
executor
lib
libpq
miscadmin.h
nodes
optimizer
parser
port
postgres.h
regex
rewrite
storage
strdup.h
tcop
utils
version.h
interfaces
test
tools
tutorial
utils

@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/nodes/nodeFuncs.c,v 1.4 1997/09/07 04:42:49 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/nodes/nodeFuncs.c,v 1.5 1997/09/08 02:23:40 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@ -23,7 +23,7 @@
#include "nodes/nodeFuncs.h"
#include "utils/lsyscache.h"
static bool var_is_inner(Var * var);
static bool var_is_inner(Var * var);
/*
* single_node -
@ -63,7 +63,7 @@ var_is_outer(Var * var)
return ((bool) (var->varno == OUTER));
}
static bool
static bool
var_is_inner(Var * var)
{
return ((bool) (var->varno == INNER));
@ -89,7 +89,7 @@ var_is_rel(Var * var)
* Returns the modified oper node.
*
*/
Oper *
Oper *
replace_opid(Oper * oper)
{
oper->opid = get_opcode(oper->opno);