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

pgindent run on all C files. Java run to follow. initdb/regression

tests pass.
This commit is contained in:
Bruce Momjian
2001-10-25 05:50:21 +00:00
parent 59da2105d8
commit b81844b173
818 changed files with 21684 additions and 20491 deletions

View File

@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/nodes/readfuncs.c,v 1.112 2001/07/03 16:52:48 tgl Exp $
* $Header: /cvsroot/pgsql/src/backend/nodes/readfuncs.c,v 1.113 2001/10/25 05:49:31 momjian Exp $
*
* NOTES
* Most of the read functions for plan nodes are tested. (In fact, they
@ -129,7 +129,6 @@ _readQuery(void)
local_node->utilityStmt = NULL;
else
{
/*
* Hack to make up for lack of readfuncs for utility-stmt nodes
*
@ -868,8 +867,8 @@ _readCaseWhen(void)
static NullTest *
_readNullTest(void)
{
NullTest *local_node;
char *token;
NullTest *local_node;
char *token;
int length;
local_node = makeNode(NullTest);
@ -893,8 +892,8 @@ _readNullTest(void)
static BooleanTest *
_readBooleanTest(void)
{
BooleanTest *local_node;
char *token;
BooleanTest *local_node;
char *token;
int length;
local_node = makeNode(BooleanTest);