Don't include postgres OIDs in query cache

This commit is contained in:
Jonas Platte 2020-07-29 16:25:15 +02:00 committed by Ryan Leckey
parent 904ba018da
commit 960e71202b

View File

@ -134,6 +134,7 @@ pub enum PgType {
#[derive(Debug, Clone)]
#[cfg_attr(feature = "offline", derive(serde::Serialize, serde::Deserialize))]
pub struct PgCustomType {
#[cfg_attr(feature = "offline", serde(skip))]
pub(crate) oid: u32,
pub(crate) name: UStr,
pub(crate) kind: PgTypeKind,