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:
@ -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);
|
||||
|
Reference in New Issue
Block a user