Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit2982b97

Browse files
committed
Clean up gram.y trailing spaces.
1 parent2c58fcc commit2982b97

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

‎src/backend/parser/gram.y

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
*
1212
*
1313
* IDENTIFICATION
14-
* $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 2.370 2002/09/22 21:44:43 tgl Exp $
14+
* $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 2.371 2002/10/31 02:31:00 momjian Exp $
1515
*
1616
* HISTORY
1717
* AUTHORDATEMAJOR EVENT
@@ -657,19 +657,19 @@ OptUserElem:
657657
$$ = makeDefElem("createdb", (Node *)makeInteger(FALSE));
658658
}
659659
|CREATEUSER
660-
{
660+
{
661661
$$ = makeDefElem("createuser", (Node *)makeInteger(TRUE));
662662
}
663663
|NOCREATEUSER
664-
{
664+
{
665665
$$ = makeDefElem("createuser", (Node *)makeInteger(FALSE));
666666
}
667667
|IN_PGROUP_Puser_list
668-
{
668+
{
669669
$$ = makeDefElem("groupElts", (Node *)$3);
670670
}
671671
|VALIDUNTILSconst
672-
{
672+
{
673673
$$ = makeDefElem("validUntil", (Node *)makeString($3));
674674
}
675675
;
@@ -707,7 +707,7 @@ OptGroupList:
707707

708708
OptGroupElem:
709709
USERuser_list
710-
{
710+
{
711711
$$ = makeDefElem("userElts", (Node *)$2);
712712
}
713713
|SYSIDIconst
@@ -1267,7 +1267,7 @@ opt_id: ColId{ $$ = $1; }
12671267
*
12681268
*****************************************************************************/
12691269

1270-
CopyStmt:COPYopt_binaryqualified_nameopt_column_listopt_oids
1270+
CopyStmt:COPYopt_binaryqualified_nameopt_column_listopt_oids
12711271
copy_fromcopy_file_namecopy_delimiteropt_withcopy_opt_list
12721272
{
12731273
CopyStmt *n = makeNode(CopyStmt);
@@ -3549,7 +3549,7 @@ opt_trans:WORK{}
35493549
*
35503550
*****************************************************************************/
35513551

3552-
ViewStmt:CREATE opt_or_replace VIEW qualified_name opt_column_list
3552+
ViewStmt:CREATE opt_or_replace VIEW qualified_name opt_column_list
35533553
AS SelectStmt
35543554
{
35553555
ViewStmt *n = makeNode(ViewStmt);
@@ -6580,7 +6580,7 @@ convert_list:
65806580
convert_args:a_expr{$$ = makeList1($1); }
65816581
| convert_args',' a_expr{$$ = lappend($1,$3); }
65826582
;
6583-
6583+
65846584

65856585
in_expr:select_with_parens
65866586
{
@@ -7380,7 +7380,7 @@ makeTypeCast(Node *arg, TypeName *typename)
73807380
*
73817381
* Earlier we would determine whether an A_Const would
73827382
* be acceptable, however Domains require coerce_type()
7383-
* to process them -- applying constraints as required.
7383+
* to process them -- applying constraints as required.
73847384
*/
73857385
TypeCast *n = makeNode(TypeCast);
73867386
n->arg = arg;

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp