Skip to content

Commit 034b5c0

Browse files
author
Sandro Santilli
committed
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
1 parent 3e550e2 commit 034b5c0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/testdata/provider/testdata_pg.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
-- Started on 2015-05-21 09:37:33 CEST
88

99
SET statement_timeout = 0;
10-
SET lock_timeout = 0;
10+
-- SET lock_timeout = 0;
1111
SET client_encoding = 'UTF8';
1212
SET standard_conforming_strings = on;
1313
SET check_function_bodies = false;

tests/testdata/provider/testdata_pg_vectorjoin.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
CREATE SCHEMA IF NOT EXISTS qgis_test;
2+
--CREATE SCHEMA IF NOT EXISTS qgis_test;
33

44

55
DROP TABLE IF EXISTS qgis_test.table_a;

0 commit comments

Comments
 (0)