1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-16 15:02:33 +03:00

pgindent run before 6.3 release, with Thomas' requested changes.

This commit is contained in:
Bruce Momjian
1998-02-26 04:46:47 +00:00
parent 757bf69a2e
commit a32450a585
430 changed files with 12390 additions and 10292 deletions

View File

@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: primnodes.h,v 1.20 1998/02/21 16:58:49 momjian Exp $
* $Id: primnodes.h,v 1.21 1998/02/26 04:42:02 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -269,7 +269,7 @@ typedef struct Aggreg
char *aggname;
Oid basetype;
Oid aggtype;
Node *target;
Node *target;
int aggno;
bool usenulls;
} Aggreg;
@@ -292,11 +292,11 @@ typedef enum SubLinkType
typedef struct SubLink
{
NodeTag type;
SubLinkType subLinkType;
SubLinkType subLinkType;
bool useor;
List *lefthand;
List *oper;
Node *subselect;
List *lefthand;
List *oper;
Node *subselect;
} SubLink;
/* ----------------