rustfmt fixes.

Not sure why these don't show up as CI failures, but on my laptop,
rustfmt insists.
This commit is contained in:
Heikki Linnakangas
2022-08-19 22:21:15 +03:00
parent daba4c7405
commit 84cd40b416
2 changed files with 2 additions and 2 deletions

View File

@@ -1,8 +1,8 @@
//! //!
//! Common utilities for dealing with PostgreSQL non-relation files. //! Common utilities for dealing with PostgreSQL non-relation files.
//! //!
use crate::transaction_id_precedes;
use super::pg_constants; use super::pg_constants;
use crate::transaction_id_precedes;
use bytes::BytesMut; use bytes::BytesMut;
use log::*; use log::*;

View File

@@ -8,9 +8,9 @@
//! to look deeper into the WAL records to also understand which blocks they modify, the code //! to look deeper into the WAL records to also understand which blocks they modify, the code
//! for that is in pageserver/src/walrecord.rs //! for that is in pageserver/src/walrecord.rs
//! //!
use super::bindings::{XLogLongPageHeaderData, XLogPageHeaderData, XLogRecord, XLOG_PAGE_MAGIC};
use super::pg_constants; use super::pg_constants;
use super::xlog_utils::*; use super::xlog_utils::*;
use super::bindings::{XLogLongPageHeaderData, XLogPageHeaderData, XLogRecord, XLOG_PAGE_MAGIC};
use bytes::{Buf, BufMut, Bytes, BytesMut}; use bytes::{Buf, BufMut, Bytes, BytesMut};
use crc32c::*; use crc32c::*;
use log::*; use log::*;