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

Commit71b3689

Browse files
committed
Remove spurious semicolons.
Petr Jelinek
1 parent9485663 commit71b3689

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
@@ -13234,7 +13234,7 @@ makeRangeVarFromAnyName(List *names, int position, core_yyscan_t yyscanner)
1323413234
r->relname = strVal(lsecond(names));
1323513235
break;
1323613236
case 3:
13237-
r->catalogname = strVal(linitial(names));;
13237+
r->catalogname = strVal(linitial(names));
1323813238
r->schemaname = strVal(lsecond(names));
1323913239
r->relname = strVal(lthird(names));
1324013240
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