From 1cb2aab70f9a6725bbfd8d05b908e24de9cee3e6 Mon Sep 17 00:00:00 2001 From: Sandro Santilli Date: Tue, 14 Apr 2015 11:33:38 +0200 Subject: [PATCH] Do not show WARNINGs from regression Should fix travis check: https://travis-ci.org/pgpointcloud/pointcloud/builds/58411794#L520 --- pgsql/expected/schema.out | 2 +- pgsql/sql/schema.sql | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/pgsql/expected/schema.out b/pgsql/expected/schema.out index 3b1a726..ed88048 100644 --- a/pgsql/expected/schema.out +++ b/pgsql/expected/schema.out @@ -1,6 +1,6 @@ -- See https://github.com/pgpointcloud/pointcloud/issues/71 +set client_min_messages to ERROR; select '#71', PC_SchemaIsValid(''::xml::text); -WARNING: unable to evaluate xpath expression "/pc:PointCloudSchema/pc:dimension" against schema XML ?column? | pc_schemaisvalid ----------+------------------ #71 | f diff --git a/pgsql/sql/schema.sql b/pgsql/sql/schema.sql index 34a1133..1026cbb 100644 --- a/pgsql/sql/schema.sql +++ b/pgsql/sql/schema.sql @@ -1,2 +1,3 @@ -- See https://github.com/pgpointcloud/pointcloud/issues/71 +set client_min_messages to ERROR; select '#71', PC_SchemaIsValid(''::xml::text);