Skip to content

Commit

Permalink
chore: upgrade declared pg version to 13.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wenym1 committed Feb 21, 2024
1 parent 4197ad5 commit a2bf769
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion e2e_test/batch/functions/setting.slt.part
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
query T
SELECT current_setting('server_version');
----
9.5.0
13.14.0

query I
SELECT CAST(current_setting('server_version_num') AS INT) / 100 AS version;
Expand Down
2 changes: 1 addition & 1 deletion src/common/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ pub const UNKNOWN_GIT_SHA: &str = "unknown";

// The single source of truth of the pg parameters, Used in ConfigMap and current_cluster_version.
// The version of PostgreSQL that Risingwave claims to be.
pub const PG_VERSION: &str = "9.5.0";
pub const PG_VERSION: &str = "13.14.0";
/// The version of PostgreSQL that Risingwave claims to be.
pub const SERVER_VERSION_NUM: i32 = 90500;
/// Shows the server-side character set encoding. At present, this parameter can be shown but not set, because the encoding is determined at database creation time. It is also the default value of `client_encoding`.
Expand Down

0 comments on commit a2bf769

Please sign in to comment.