Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Remove spurious semicolons.
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>
Tue, 31 Mar 2015 12:12:27 +0000 (15:12 +0300)
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>
Tue, 31 Mar 2015 12:15:04 +0000 (15:15 +0300)
Petr Jelinek

contrib/postgres_fdw/deparse.c
src/backend/parser/gram.y
src/backend/utils/adt/json.c
src/backend/utils/adt/oracle_compat.c

index a748b7afea19ef0eb1eb01c94de08a8ee0542559..032a34bc8067d97dc5ce15563a6a8963b6accb6c 100644 (file)
@@ -316,7 +316,7 @@ foreign_expr_walker(Node *node,
            break;
        case T_ArrayRef:
            {
-               ArrayRef   *ar = (ArrayRef *) node;;
+               ArrayRef   *ar = (ArrayRef *) node;
 
                /* Assignment should not be in restrictions. */
                if (ar->refassgnexpr != NULL)
index 3fcb3cbd7c073359d15e66d61e21dce687af072d..eec10fc48c11a5a1d845946ab1f37c4ee5095fa4 100644 (file)
@@ -13648,7 +13648,7 @@ makeRangeVarFromAnyName(List *names, int position, core_yyscan_t yyscanner)
            r->relname = strVal(lsecond(names));
            break;
        case 3:
-           r->catalogname = strVal(linitial(names));;
+           r->catalogname = strVal(linitial(names));
            r->schemaname = strVal(lsecond(names));
            r->relname = strVal(lthird(names));
            break;
index aa197f74142c2460509bc4b65e9a9f4635fb59d0..0566b926fedb36dd61b664ed15c2ef976d5eb9df 100644 (file)
@@ -154,7 +154,7 @@ static inline void
 lex_expect(JsonParseContext ctx, JsonLexContext *lex, JsonTokenType token)
 {
    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 */
index d448088e50e3eeced3fdcafbadc435007c81b84d..1f4f58d911d89fae93046bc2fef9414fd94c6fe6 100644 (file)
@@ -955,7 +955,7 @@ chr         (PG_FUNCTION_ARGS)
        if (bytes == 2)
        {
            wch[0] = 0xC0 | ((cvalue >> 6) & 0x1F);
-           wch[1] = 0x80 | (cvalue & 0x3F);;
+           wch[1] = 0x80 | (cvalue & 0x3F);
        }
        else if (bytes == 3)
        {