Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Steinhardt <psteinhardt@gitlab.com>2022-07-07 09:01:04 +0300
committerPatrick Steinhardt <psteinhardt@gitlab.com>2022-07-07 09:01:04 +0300
commit7bdb3780af3fe639bfd8a38ec44d2b2aff520eb2 (patch)
tree5b9b83f90cc1b00baffe351b1ba9866ddcffab77
parentf112b59b17480674d11b94e12d51701f21a78c96 (diff)
praefect-schema: Update the Praefect schema
We have changed the Postgres client version due to our update to a more recent GitLab Build Image, which caused some minor changes in the Praefect schema. Update the schema to match.
-rw-r--r--_support/praefect-schema.sql4
1 files changed, 1 insertions, 3 deletions
diff --git a/_support/praefect-schema.sql b/_support/praefect-schema.sql
index a1aa215b1..c0874080c 100644
--- a/_support/praefect-schema.sql
+++ b/_support/praefect-schema.sql
@@ -20,7 +20,7 @@ SET row_security = off;
-- Name: praefect_database_schema; Type: DATABASE; Schema: -; Owner: -
--
-CREATE DATABASE praefect_database_schema WITH TEMPLATE = template0 ENCODING = 'UTF8' LC_COLLATE = 'en_US.utf8' LC_CTYPE = 'en_US.utf8';
+CREATE DATABASE praefect_database_schema WITH TEMPLATE = template0 ENCODING = 'UTF8' LOCALE = 'en_US.utf8';
\connect praefect_database_schema
@@ -98,8 +98,6 @@ CREATE FUNCTION public.notify_on_change() RETURNS trigger
SET default_tablespace = '';
-SET default_with_oids = false;
-
--
-- Name: node_status; Type: TABLE; Schema: public; Owner: -
--