Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
2982b97f
Commit
2982b97f
authored
Oct 31, 2002
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Clean up gram.y trailing spaces.
parent
2c58fcc0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
10 deletions
+10
-10
src/backend/parser/gram.y
src/backend/parser/gram.y
+10
-10
No files found.
src/backend/parser/gram.y
View file @
2982b97f
...
...
@@ -11,7 +11,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 2.37
0 2002/09/22 21:44:43 tgl
Exp $
* $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 2.37
1 2002/10/31 02:31:00 momjian
Exp $
*
* HISTORY
* AUTHOR DATE MAJOR EVENT
...
...
@@ -657,19 +657,19 @@ OptUserElem:
$$ = makeDefElem("createdb", (Node *)makeInteger(FALSE));
}
| CREATEUSER
{
{
$$ = makeDefElem("createuser", (Node *)makeInteger(TRUE));
}
| NOCREATEUSER
{
{
$$ = makeDefElem("createuser", (Node *)makeInteger(FALSE));
}
| IN_P GROUP_P user_list
{
{
$$ = makeDefElem("groupElts", (Node *)$3);
}
| VALID UNTIL Sconst
{
{
$$ = makeDefElem("validUntil", (Node *)makeString($3));
}
;
...
...
@@ -707,7 +707,7 @@ OptGroupList:
OptGroupElem:
USER user_list
{
{
$$ = makeDefElem("userElts", (Node *)$2);
}
| SYSID Iconst
...
...
@@ -1267,7 +1267,7 @@ opt_id: ColId { $$ = $1; }
*
*****************************************************************************/
CopyStmt: COPY opt_binary qualified_name opt_column_list opt_oids
CopyStmt: COPY opt_binary qualified_name opt_column_list opt_oids
copy_from copy_file_name copy_delimiter opt_with copy_opt_list
{
CopyStmt *n = makeNode(CopyStmt);
...
...
@@ -3549,7 +3549,7 @@ opt_trans: WORK {}
*
*****************************************************************************/
ViewStmt: CREATE opt_or_replace VIEW qualified_name opt_column_list
ViewStmt: CREATE opt_or_replace VIEW qualified_name opt_column_list
AS SelectStmt
{
ViewStmt *n = makeNode(ViewStmt);
...
...
@@ -6580,7 +6580,7 @@ convert_list:
convert_args: a_expr { $$ = makeList1($1); }
| convert_args ',' a_expr { $$ = lappend($1, $3); }
;
in_expr: select_with_parens
{
...
...
@@ -7380,7 +7380,7 @@ makeTypeCast(Node *arg, TypeName *typename)
*
* Earlier we would determine whether an A_Const would
* be acceptable, however Domains require coerce_type()
* to process them -- applying constraints as required.
* to process them -- applying constraints as required.
*/
TypeCast *n = makeNode(TypeCast);
n->arg = arg;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment