Fix code indentation violation in commit b6e1157e7d
authorAmit Langote <amitlan@postgresql.org>
Thu, 13 Jul 2023 13:20:40 +0000 (22:20 +0900)
committerAmit Langote <amitlan@postgresql.org>
Thu, 13 Jul 2023 13:26:10 +0000 (22:26 +0900)
Per buildfarm member koel via Andrew Dunstan.

src/backend/parser/parse_expr.c

index 26344743e40f4042afe8d2ab82954ee8e049754b..13a06ce76fb6281f0664327ab0d180a6f55ee26a 100644 (file)
@@ -3521,9 +3521,9 @@ makeJsonConstructorExpr(ParseState *pstate, JsonConstructorType type,
 
    /*
     * Coerce to the RETURNING type and format, if needed.  We abuse
-    * CaseTestExpr here as placeholder to pass the result of either evaluating
-    * 'fexpr' or whatever is produced by ExecEvalJsonConstructor() that is of
-    * type JSON or JSONB to the coercion function.
+    * CaseTestExpr here as placeholder to pass the result of either
+    * evaluating 'fexpr' or whatever is produced by ExecEvalJsonConstructor()
+    * that is of type JSON or JSONB to the coercion function.
     */
    if (fexpr)
    {
@@ -3632,6 +3632,7 @@ transformJsonArrayQueryConstructor(ParseState *pstate,
    colref->location = ctor->location;
 
    agg->arg = makeJsonValueExpr((Expr *) colref, ctor->format);
+
    /*
     * No formatting necessary, so set formatted_expr to be the same as
     * raw_expr.