mirror of
https://github.com/postgres/postgres.git
synced 2025-11-12 05:01:15 +03:00
Rename dtrace probes for ongoing xlog -> wal conversion.
xlog-switch becomes wal-switch, and xlog-insert becomes wal-insert.
This commit is contained in:
@@ -1114,7 +1114,7 @@ XLogInsertRecord(XLogRecData *rdata,
|
||||
*/
|
||||
if (isLogSwitch)
|
||||
{
|
||||
TRACE_POSTGRESQL_XLOG_SWITCH();
|
||||
TRACE_POSTGRESQL_WAL_SWITCH();
|
||||
XLogFlush(EndPos);
|
||||
|
||||
/*
|
||||
|
||||
@@ -429,7 +429,7 @@ XLogInsert(RmgrId rmid, uint8 info)
|
||||
XLR_CHECK_CONSISTENCY)) != 0)
|
||||
elog(PANIC, "invalid xlog info mask %02X", info);
|
||||
|
||||
TRACE_POSTGRESQL_XLOG_INSERT(rmid, info);
|
||||
TRACE_POSTGRESQL_WAL_INSERT(rmid, info);
|
||||
|
||||
/*
|
||||
* In bootstrap mode, we don't actually log anything but XLOG resources;
|
||||
|
||||
Reference in New Issue
Block a user