From 2588ac9a311064112131ffe4a0a97beb69471249 Mon Sep 17 00:00:00 2001 From: Mehdi Osman Date: Thu, 15 Sep 2022 11:56:21 +0200 Subject: [PATCH] Create 1.8.1.sql --- scripts/helm/db/init_dbs/postgresql/1.8.1/1.8.1.sql | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 scripts/helm/db/init_dbs/postgresql/1.8.1/1.8.1.sql diff --git a/scripts/helm/db/init_dbs/postgresql/1.8.1/1.8.1.sql b/scripts/helm/db/init_dbs/postgresql/1.8.1/1.8.1.sql new file mode 100644 index 000000000..3089eafd0 --- /dev/null +++ b/scripts/helm/db/init_dbs/postgresql/1.8.1/1.8.1.sql @@ -0,0 +1,8 @@ +BEGIN; +CREATE OR REPLACE FUNCTION openreplay_version() + RETURNS text AS +$$ +SELECT 'v1.8.1' +$$ LANGUAGE sql IMMUTABLE; + +COMMIT;