Make PG initialization scripts work with PostgreSQL 9.1

- Remove lock_timeout setting
   See https://travis-ci.org/qgis/QGIS/jobs/109844438#L942

 - Remove CREATE SCHEMA IF NOT EXISTS
   See https://travis-ci.org/qgis/QGIS/jobs/109891682#L1016
This commit is contained in:
Sandro Santilli 2016-02-17 16:28:20 +01:00
parent 3e550e29a0
commit 034b5c0be5
2 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@
-- Started on 2015-05-21 09:37:33 CEST
SET statement_timeout = 0;
SET lock_timeout = 0;
-- SET lock_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SET check_function_bodies = false;

View File

@ -1,5 +1,5 @@

CREATE SCHEMA IF NOT EXISTS qgis_test;
--CREATE SCHEMA IF NOT EXISTS qgis_test;
DROP TABLE IF EXISTS qgis_test.table_a;