mirror of
https://github.com/postgres/postgres.git
synced 2025-07-21 16:02:15 +03:00
Remove spurious semicolons.
Petr Jelinek
This commit is contained in:
@ -316,7 +316,7 @@ foreign_expr_walker(Node *node,
|
|||||||
break;
|
break;
|
||||||
case T_ArrayRef:
|
case T_ArrayRef:
|
||||||
{
|
{
|
||||||
ArrayRef *ar = (ArrayRef *) node;;
|
ArrayRef *ar = (ArrayRef *) node;
|
||||||
|
|
||||||
/* Assignment should not be in restrictions. */
|
/* Assignment should not be in restrictions. */
|
||||||
if (ar->refassgnexpr != NULL)
|
if (ar->refassgnexpr != NULL)
|
||||||
|
@ -13648,7 +13648,7 @@ makeRangeVarFromAnyName(List *names, int position, core_yyscan_t yyscanner)
|
|||||||
r->relname = strVal(lsecond(names));
|
r->relname = strVal(lsecond(names));
|
||||||
break;
|
break;
|
||||||
case 3:
|
case 3:
|
||||||
r->catalogname = strVal(linitial(names));;
|
r->catalogname = strVal(linitial(names));
|
||||||
r->schemaname = strVal(lsecond(names));
|
r->schemaname = strVal(lsecond(names));
|
||||||
r->relname = strVal(lthird(names));
|
r->relname = strVal(lthird(names));
|
||||||
break;
|
break;
|
||||||
|
@ -154,7 +154,7 @@ static inline void
|
|||||||
lex_expect(JsonParseContext ctx, JsonLexContext *lex, JsonTokenType token)
|
lex_expect(JsonParseContext ctx, JsonLexContext *lex, JsonTokenType token)
|
||||||
{
|
{
|
||||||
if (!lex_accept(lex, token, NULL))
|
if (!lex_accept(lex, token, NULL))
|
||||||
report_parse_error(ctx, lex);;
|
report_parse_error(ctx, lex);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* chars to consider as part of an alphanumeric token */
|
/* chars to consider as part of an alphanumeric token */
|
||||||
|
@ -955,7 +955,7 @@ chr (PG_FUNCTION_ARGS)
|
|||||||
if (bytes == 2)
|
if (bytes == 2)
|
||||||
{
|
{
|
||||||
wch[0] = 0xC0 | ((cvalue >> 6) & 0x1F);
|
wch[0] = 0xC0 | ((cvalue >> 6) & 0x1F);
|
||||||
wch[1] = 0x80 | (cvalue & 0x3F);;
|
wch[1] = 0x80 | (cvalue & 0x3F);
|
||||||
}
|
}
|
||||||
else if (bytes == 3)
|
else if (bytes == 3)
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user