From 3e69c41a479aeaa3e9356cc07e37ff6b9cb06b8b Mon Sep 17 00:00:00 2001 From: Konstantin Knizhnik Date: Fri, 9 Jul 2021 15:30:36 +0300 Subject: [PATCH] Add XLOG_HEAP_OPMASK to pg_contants --- postgres_ffi/src/pg_constants.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/postgres_ffi/src/pg_constants.rs b/postgres_ffi/src/pg_constants.rs index 996e5e978e..d0d70210ac 100644 --- a/postgres_ffi/src/pg_constants.rs +++ b/postgres_ffi/src/pg_constants.rs @@ -42,6 +42,7 @@ pub const XLOG_XACT_ABORT_PREPARED: u8 = 0x40; /* mask for filtering opcodes out of xl_info */ pub const XLOG_XACT_OPMASK: u8 = 0x70; +pub const XLOG_HEAP_OPMASK: u8 = 0x70; /* does this record have a 'xinfo' field or not */ pub const XLOG_XACT_HAS_INFO: u8 = 0x80;