Skip to content

Commit

Permalink
feat(API):Upgrade server version format for compatibility improvement. (
Browse files Browse the repository at this point in the history
  • Loading branch information
sunng87 authored Jan 17, 2025
1 parent b6aebbd commit 0c36b86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/api/auth/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ pub struct DefaultServerParameterProvider {
impl Default for DefaultServerParameterProvider {
fn default() -> Self {
Self {
server_version: env!("CARGO_PKG_VERSION").to_owned(),
server_version: format!("16.6-pgwire-{}", env!("CARGO_PKG_VERSION").to_owned()),
server_encoding: "UTF8".to_owned(),
client_encoding: "UTF8".to_owned(),
date_style: "ISO YMD".to_owned(),
Expand Down

0 comments on commit 0c36b86

Please sign in to comment.