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

Commitd6a892e

Browse files
committed
Remove spurious semicolons.
Petr Jelinek
1 parent22b3f5b commitd6a892e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

‎src/backend/parser/gram.y

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12822,7 +12822,7 @@ makeRangeVarFromAnyName(List *names, int position, core_yyscan_t yyscanner)
1282212822
r->relname = strVal(lsecond(names));
1282312823
break;
1282412824
case 3:
12825-
r->catalogname = strVal(linitial(names));;
12825+
r->catalogname = strVal(linitial(names));
1282612826
r->schemaname = strVal(lsecond(names));
1282712827
r->relname = strVal(lthird(names));
1282812828
break;

‎src/backend/utils/adt/oracle_compat.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -955,7 +955,7 @@ chr(PG_FUNCTION_ARGS)
955955
if (bytes==2)
956956
{
957957
wch[0]=0xC0 | ((cvalue >>6)&0x1F);
958-
wch[1]=0x80 | (cvalue&0x3F);;
958+
wch[1]=0x80 | (cvalue&0x3F);
959959
}
960960
elseif (bytes==3)
961961
{

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp