Skip to main content

mockgres/
compat.rs

1pub const POSTGRES_COMPAT_VERSION: &str = "18.4";
2pub const POSTGRES_COMPAT_VERSION_NUM: &str = "180004";
3
4pub(crate) fn server_version_string() -> String {
5    format!("PostgreSQL {POSTGRES_COMPAT_VERSION} on mockgres")
6}