mirror of
https://github.com/postgres/postgres.git
synced 2025-07-03 20:02:46 +03:00
Remove superfluous newlines in function prototypes.
These were introduced by pgindent due to fixe to broken
indentation (c.f. 8255c7a5ee
). Previously the mis-indentation of
function prototypes was creatively used to reduce indentation in a few
places.
As that formatting only exists in master and REL_12_STABLE, it seems
better to fix it in both, rather than having some odd indentation in
v12 that somebody might copy for future patches or such.
Author: Andres Freund
Discussion: https://postgr.es/m/20190728013754.jwcbe5nfyt3533vx@alap3.anarazel.de
Backpatch: 12-
This commit is contained in:
@ -185,11 +185,9 @@ static JsonPathExecResult executeItemUnwrapTargetArray(JsonPathExecContext *cxt,
|
||||
static JsonPathExecResult executeNextItem(JsonPathExecContext *cxt,
|
||||
JsonPathItem *cur, JsonPathItem *next,
|
||||
JsonbValue *v, JsonValueList *found, bool copy);
|
||||
static JsonPathExecResult executeItemOptUnwrapResult(
|
||||
JsonPathExecContext *cxt, JsonPathItem *jsp, JsonbValue *jb,
|
||||
static JsonPathExecResult executeItemOptUnwrapResult(JsonPathExecContext *cxt, JsonPathItem *jsp, JsonbValue *jb,
|
||||
bool unwrap, JsonValueList *found);
|
||||
static JsonPathExecResult executeItemOptUnwrapResultNoThrow(
|
||||
JsonPathExecContext *cxt, JsonPathItem *jsp,
|
||||
static JsonPathExecResult executeItemOptUnwrapResultNoThrow(JsonPathExecContext *cxt, JsonPathItem *jsp,
|
||||
JsonbValue *jb, bool unwrap, JsonValueList *found);
|
||||
static JsonPathBool executeBoolItem(JsonPathExecContext *cxt,
|
||||
JsonPathItem *jsp, JsonbValue *jb, bool canHaveNext);
|
||||
|
Reference in New Issue
Block a user