diff options
author | Bruce Momjian <bruce@momjian.us> | 1998-02-26 04:46:47 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1998-02-26 04:46:47 +0000 |
commit | a32450a5855eed4bfd756ef292ee45d3c754665b (patch) | |
tree | 26735c3406d9f46d0f39accbe6ff1fb5cc5beedc /src/include/nodes/parsenodes.h | |
parent | 757bf69a2e259c76baed94fa06e792664ab5ed67 (diff) | |
download | postgresql-a32450a5855eed4bfd756ef292ee45d3c754665b.tar.gz postgresql-a32450a5855eed4bfd756ef292ee45d3c754665b.zip |
pgindent run before 6.3 release, with Thomas' requested changes.
Diffstat (limited to 'src/include/nodes/parsenodes.h')
-rw-r--r-- | src/include/nodes/parsenodes.h | 29 |
1 files changed, 15 insertions, 14 deletions
diff --git a/src/include/nodes/parsenodes.h b/src/include/nodes/parsenodes.h index f91e1153732..15137731393 100644 --- a/src/include/nodes/parsenodes.h +++ b/src/include/nodes/parsenodes.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: parsenodes.h,v 1.48 1998/02/21 06:32:02 scrappy Exp $ + * $Id: parsenodes.h,v 1.49 1998/02/26 04:41:59 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -46,7 +46,7 @@ typedef struct Query bool unionall; /* union without unique sort */ bool hasAggs; /* has aggregates in target list */ bool hasSubLinks; /* has subquery SubLink */ - + char *uniqueFlag; /* NULL, '*', or Unique attribute name */ List *sortClause; /* a list of SortClause's */ @@ -58,7 +58,8 @@ typedef struct Query * BY */ Node *havingQual; /* qualification of each group */ - List *unionClause; /* unions are linked under the previous query */ + List *unionClause; /* unions are linked under the previous + * query */ /* internal to planner */ List *base_relation_list_; /* base relation list */ @@ -202,26 +203,26 @@ typedef struct DropPLangStmt /* ---------------------- - * Create/Alter/Drop User Statements + * Create/Alter/Drop User Statements * ---------------------- */ typedef struct CreateUserStmt { - NodeTag type; - char* user; /* PostgreSQL user login */ - char* password; /* PostgreSQL user password */ - bool* createdb; /* Can the user create databases? */ - bool* createuser; /* Can this user create users? */ - List* groupElts; /* The groups the user is a member of */ - char* validUntil; /* The time the login is valid until */ + NodeTag type; + char *user; /* PostgreSQL user login */ + char *password; /* PostgreSQL user password */ + bool *createdb; /* Can the user create databases? */ + bool *createuser; /* Can this user create users? */ + List *groupElts; /* The groups the user is a member of */ + char *validUntil; /* The time the login is valid until */ } CreateUserStmt; -typedef CreateUserStmt AlterUserStmt; +typedef CreateUserStmt AlterUserStmt; typedef struct DropUserStmt { - NodeTag type; - char* user; /* PostgreSQL user login */ + NodeTag type; + char *user; /* PostgreSQL user login */ } DropUserStmt; |