mirror of
https://github.com/postgres/postgres.git
synced 2025-11-22 12:22:45 +03:00
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.
This commit is contained in:
@@ -24,7 +24,7 @@
|
||||
#include "utils/builtins.h"
|
||||
|
||||
/* GUC */
|
||||
int default_toast_compression = TOAST_PGLZ_COMPRESSION;
|
||||
int default_toast_compression = TOAST_PGLZ_COMPRESSION;
|
||||
|
||||
#define NO_LZ4_SUPPORT() \
|
||||
ereport(ERROR, \
|
||||
@@ -109,7 +109,7 @@ pglz_decompress_datum(const struct varlena *value)
|
||||
*/
|
||||
struct varlena *
|
||||
pglz_decompress_datum_slice(const struct varlena *value,
|
||||
int32 slicelength)
|
||||
int32 slicelength)
|
||||
{
|
||||
struct varlena *result;
|
||||
int32 rawsize;
|
||||
@@ -255,12 +255,12 @@ lz4_decompress_datum_slice(const struct varlena *value, int32 slicelength)
|
||||
ToastCompressionId
|
||||
toast_get_compression_id(struct varlena *attr)
|
||||
{
|
||||
ToastCompressionId cmid = TOAST_INVALID_COMPRESSION_ID;
|
||||
ToastCompressionId cmid = TOAST_INVALID_COMPRESSION_ID;
|
||||
|
||||
/*
|
||||
* If it is stored externally then fetch the compression method id from the
|
||||
* external toast pointer. If compressed inline, fetch it from the toast
|
||||
* compression header.
|
||||
* If it is stored externally then fetch the compression method id from
|
||||
* the external toast pointer. If compressed inline, fetch it from the
|
||||
* toast compression header.
|
||||
*/
|
||||
if (VARATT_IS_EXTERNAL_ONDISK(attr))
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user