diff options
author | Tom Lane | 2021-05-12 17:14:10 +0000 |
---|---|---|
committer | Tom Lane | 2021-05-12 17:14:10 +0000 |
commit | def5b065ff22a16a80084587613599fe15627213 (patch) | |
tree | 13f424449b7fb90c85659071b6adf4e27ae6d272 /src/include/access/brin_tuple.h | |
parent | e6ccd1ce1644d1b40b7981f8bc172394de524f99 (diff) |
Initial pgindent and pgperltidy run for v14.
Also "make reformat-dat-files".
The only change worthy of note is that pgindent messed up the formatting
of launcher.c's struct LogicalRepWorkerId, which led me to notice that
that struct wasn't used at all anymore, so I just took it out.
Diffstat (limited to 'src/include/access/brin_tuple.h')
-rw-r--r-- | src/include/access/brin_tuple.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/access/brin_tuple.h b/src/include/access/brin_tuple.h index 87de94f3970..c80341f4d6a 100644 --- a/src/include/access/brin_tuple.h +++ b/src/include/access/brin_tuple.h @@ -33,7 +33,7 @@ typedef struct BrinValues bool bv_allnulls; /* are all values nulls in the page range? */ Datum *bv_values; /* current accumulated values */ Datum bv_mem_value; /* expanded accumulated values */ - MemoryContext bv_context; + MemoryContext bv_context; brin_serialize_callback_type bv_serialize; } BrinValues; |