aboutsummaryrefslogtreecommitdiff
path: root/src/include/executor
diff options
context:
space:
mode:
authorAmit Kapila <akapila@postgresql.org>2020-04-13 15:31:16 +0530
committerAmit Kapila <akapila@postgresql.org>2020-04-13 15:31:16 +0530
commitef08ca113fe302b9ddf298964756eadcd41e77a1 (patch)
treef3c297266d3d06544fea93ba6ac9ca9ba0f06778 /src/include/executor
parent0c620a5803afbb667da7ac4bcc91b245a214a80c (diff)
downloadpostgresql-ef08ca113fe302b9ddf298964756eadcd41e77a1.tar.gz
postgresql-ef08ca113fe302b9ddf298964756eadcd41e77a1.zip
Cosmetic fixups for WAL usage work.
Reported-by: Justin Pryzby and Euler Taveira Author: Justin Pryzby and Julien Rouhaud Reviewed-by: Amit Kapila Discussion: https://postgr.es/m/CAB-hujrP8ZfUkvL5OYETipQwA=e3n7oqHFU=4ZLxWS_Cza3kQQ@mail.gmail.com
Diffstat (limited to 'src/include/executor')
-rw-r--r--src/include/executor/instrument.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/executor/instrument.h b/src/include/executor/instrument.h
index 64439c6819c..50d672b270d 100644
--- a/src/include/executor/instrument.h
+++ b/src/include/executor/instrument.h
@@ -35,7 +35,7 @@ typedef struct BufferUsage
typedef struct WalUsage
{
long wal_records; /* # of WAL records produced */
- long wal_num_fpw; /* # of WAL full page image writes produced */
+ long wal_fpw; /* # of WAL full page writes produced */
uint64 wal_bytes; /* size of WAL records produced */
} WalUsage;