From 469804d2cb9fe1df4a654d868f388cd1eb17c0b3 Mon Sep 17 00:00:00 2001
From: Laurent Giovannoni <laurent.giovannoni@maarch.org>
Date: Wed, 15 Feb 2012 10:35:34 +0000
Subject: [PATCH] fix: del postgres role

---
 core/trunk/core/sql/structure/core.postgresql.sql | 4 ++--
 core/trunk/structure.sql                          | 3 ---
 2 files changed, 2 insertions(+), 5 deletions(-)

diff --git a/core/trunk/core/sql/structure/core.postgresql.sql b/core/trunk/core/sql/structure/core.postgresql.sql
index dee8779b76a..80679362345 100644
--- a/core/trunk/core/sql/structure/core.postgresql.sql
+++ b/core/trunk/core/sql/structure/core.postgresql.sql
@@ -5,8 +5,8 @@ SET check_function_bodies = false;
 SET client_min_messages = warning;
 SET escape_string_warning = off;
 
-DROP PROCEDURAL LANGUAGE IF EXISTS plpgsql  CASCADE;
-CREATE PROCEDURAL LANGUAGE plpgsql;
+--DROP PROCEDURAL LANGUAGE IF EXISTS plpgsql  CASCADE;
+--CREATE PROCEDURAL LANGUAGE plpgsql;
 
 SET search_path = public, pg_catalog;
 SET default_tablespace = '';
diff --git a/core/trunk/structure.sql b/core/trunk/structure.sql
index e9ff7bf61bb..9d6eb233fe1 100644
--- a/core/trunk/structure.sql
+++ b/core/trunk/structure.sql
@@ -1200,7 +1200,6 @@ CREATE TABLE event_stack
 WITH (
   OIDS=FALSE
 );
-ALTER TABLE event_stack OWNER TO postgres;
 
 CREATE SEQUENCE email_stack_seq
   INCREMENT 1
@@ -1228,7 +1227,6 @@ CREATE TABLE email_stack
 WITH (
   OIDS=FALSE
 );
-ALTER TABLE email_stack OWNER TO postgres;
 
 -- modules/physical_archive/sql/structure/physical_archive.postgresql.sql
 
@@ -1424,7 +1422,6 @@ CREATE TABLE templates_association
 WITH (
   OIDS=FALSE
 );
-ALTER TABLE templates_association OWNER TO postgres;
 
 
 CREATE TABLE templates_doctype_ext
-- 
GitLab