diff options
author | Robert Haas <rhaas@postgresql.org> | 2017-02-09 16:40:19 -0500 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2017-02-09 16:40:19 -0500 |
commit | 3f01fd4ca0b4c81333b1f0dadb09c73aa589ab6e (patch) | |
tree | 8c0e024a3f9c0db749a269206b1dafec4614c2e1 /src/backend/access/transam/xloginsert.c | |
parent | 85c11324cabaddcfaf3347df78555b30d27c5b5a (diff) | |
download | postgresql-3f01fd4ca0b4c81333b1f0dadb09c73aa589ab6e.tar.gz postgresql-3f01fd4ca0b4c81333b1f0dadb09c73aa589ab6e.zip |
Rename dtrace probes for ongoing xlog -> wal conversion.
xlog-switch becomes wal-switch, and xlog-insert becomes wal-insert.
Diffstat (limited to 'src/backend/access/transam/xloginsert.c')
-rw-r--r-- | src/backend/access/transam/xloginsert.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/access/transam/xloginsert.c b/src/backend/access/transam/xloginsert.c index 797e68cd901..03b05f937f0 100644 --- a/src/backend/access/transam/xloginsert.c +++ b/src/backend/access/transam/xloginsert.c @@ -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; |