From 7cd7b187a5cb990ceb0ea9531cd3345b1e2799c3 Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Sun, 26 Feb 2023 16:44:25 -0500 Subject: [PATCH] Rename accessor --- postgres-protocol/src/message/backend.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/postgres-protocol/src/message/backend.rs b/postgres-protocol/src/message/backend.rs index 2b245101..1b5be109 100644 --- a/postgres-protocol/src/message/backend.rs +++ b/postgres-protocol/src/message/backend.rs @@ -546,7 +546,7 @@ impl DataRowBody { } #[inline] - pub fn storage_bytes(&self) -> &Bytes { + pub fn buffer_bytes(&self) -> &Bytes { &self.storage } }