Doesn't anyone around here run the regression tests on patches?

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: pgsql-hackers(at)postgreSQL(dot)org
Subject: Doesn't anyone around here run the regression tests on patches?
Date: 2000-09-12 20:14:00
Message-ID: 24014.968789640@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

With latest CVS, rules regress test is failing with

-- Test for constraint updates/deletes
--
insert into rtest_system values ('orion', 'Linux Jan Wieck');
+ ERROR: You can't change view relation rtest_system
insert into rtest_system values ('notjw', 'WinNT Jan Wieck (notebook)');
+ ERROR: You can't change view relation rtest_system
insert into rtest_system values ('neptun', 'Fileserver');
+ ERROR: You can't change view relation rtest_system
insert into rtest_interface values ('orion', 'eth0');
insert into rtest_interface values ('orion', 'eth1');
insert into rtest_interface values ('notjw', 'eth0');
insert into rtest_interface values ('neptun', 'eth0');
insert into rtest_person values ('jw', 'Jan Wieck');
+ ERROR: You can't change view relation rtest_person
insert into rtest_person values ('bm', 'Bruce Momjian');
+ ERROR: You can't change view relation rtest_person
insert into rtest_admin values ('jw', 'orion');
insert into rtest_admin values ('jw', 'notjw');
insert into rtest_admin values ('bm', 'neptun');
update rtest_system set sysname = 'pluto' where sysname = 'neptun';
+ NOTICE: mdopen: couldn't open rtest_system: No such file or directory
+ ERROR: cannot open relation rtest_system
select * from rtest_interface;
sysname | ifname

and it goes downhill from there...

regards, tom lane

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message The Hermit Hacker 2000-09-12 20:59:56 Re: Status of new relation file naming
Previous Message Bruce Momjian - CVS 2000-09-12 18:56:04 pgsql/src/interfaces/jdbc/org/postgresql/jdbc1 (DatabaseMetaData.java)