Skip to content

Commit 60e904c

Browse files
committed
Fix problem with NOTICE in regression tests.
1 parent 7f8d4c4 commit 60e904c

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

expected/tables.out

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
-- Create tables
2+
SET client_min_messages = 'warning';
23
CREATE TABLE spheretmp1 (p spoint);
34
\copy spheretmp1 from 'data/test_spherepoint.data'
45
\copy spheretmp1 from 'data/test_spherepoint.data'
@@ -15,8 +16,6 @@ CREATE TABLE spheretmp4 AS
1516
SELECT sline ( p , p - strans '-15d,-15d,-15d,ZXZ' ) AS l
1617
FROM spheretmp1;
1718
CREATE TABLE spheretmp5 (id int PRIMARY KEY , p spoly );
18-
NOTICE: CREATE TABLE / PRIMARY KEY will create implicit index "spheretmp5_pkey" for table "spheretmp5"
1919
\copy spheretmp5 from 'data/test_spherepolygon.data'
2020
CREATE TABLE spheretmp6 (id int PRIMARY KEY , p spath );
21-
NOTICE: CREATE TABLE / PRIMARY KEY will create implicit index "spheretmp6_pkey" for table "spheretmp6"
2221
\copy spheretmp6 from 'data/test_spherepath.data'

sql/tables.sql

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
-- Create tables
22

3+
SET client_min_messages = 'warning';
4+
35
CREATE TABLE spheretmp1 (p spoint);
46

57
\copy spheretmp1 from 'data/test_spherepoint.data'

0 commit comments

Comments
 (0)