@@ -189,7 +189,7 @@ typedef struct Counters
189
189
double blk_write_time ;/* time spent writing, in msec */
190
190
double usage ;/* usage factor */
191
191
int64 wal_records ;/* # of WAL records generated */
192
- int64 wal_num_fpw ;/* # of WAL full pageimage records generated */
192
+ int64 wal_fpw ;/* # of WAL full pagewrites generated */
193
193
uint64 wal_bytes ;/* total amount of WAL bytes generated */
194
194
}Counters ;
195
195
@@ -1432,7 +1432,7 @@ pgss_store(const char *query, uint64 queryId,
1432
1432
e -> counters .blk_write_time += INSTR_TIME_GET_MILLISEC (bufusage -> blk_write_time );
1433
1433
e -> counters .usage += USAGE_EXEC (total_time );
1434
1434
e -> counters .wal_records += walusage -> wal_records ;
1435
- e -> counters .wal_num_fpw += walusage -> wal_num_fpw ;
1435
+ e -> counters .wal_fpw += walusage -> wal_fpw ;
1436
1436
e -> counters .wal_bytes += walusage -> wal_bytes ;
1437
1437
1438
1438
SpinLockRelease (& e -> mutex );
@@ -1824,7 +1824,7 @@ pg_stat_statements_internal(FunctionCallInfo fcinfo,
1824
1824
Datum wal_bytes ;
1825
1825
1826
1826
values [i ++ ]= Int64GetDatumFast (tmp .wal_records );
1827
- values [i ++ ]= Int64GetDatumFast (tmp .wal_num_fpw );
1827
+ values [i ++ ]= Int64GetDatumFast (tmp .wal_fpw );
1828
1828
1829
1829
snprintf (buf ,sizeof buf ,UINT64_FORMAT ,tmp .wal_bytes );
1830
1830