foreign_key regression test fails on Solaris 2.6

From: pgsql-bugs(at)postgresql(dot)org
To: pgsql-bugs(at)postgresql(dot)org
Subject: foreign_key regression test fails on Solaris 2.6
Date: 2000-08-28 20:30:17
Message-ID: 200008282030.e7SKUHb29193@hub.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

Pascal Mueller (pascal(at)fairware(dot)org) reports a bug with a severity of 4
The lower the number the more severe it is.

Short Description
foreign_key regression test fails on Solaris 2.6

Long Description
Running the regression test on PostgreSQL 7.0.2 on Solaris 2.6 (SPARC)
fails with error message '_outNode: don't know how to print type 726',
see details from the differences file as follows:

*** expected/foreign_key.out Thu Feb 24 17:02:27 2000
--- results/foreign_key.out Fri Aug 11 23:44:26 2000
***************
*** 9,14 ****
--- 9,15 ----
NOTICE: CREATE TABLE/PRIMARY KEY will create implicit index 'pktable_pkey' for table 'pktable'
CREATE TABLE FKTABLE ( ftest1 int REFERENCES PKTABLE MATCH FULL ON DELETE CASCADE ON UPDATE CASCADE, ftest2 int );
NOTICE: CREATE TABLE will create implicit trigger(s) for FOREIGN KEY check(s)
+ NOTICE: _outNode: don't know how to print type 726
-- Insert test data into PKTABLE
INSERT INTO PKTABLE VALUES (1, 'Test1');
INSERT INTO PKTABLE VALUES (2, 'Test2');
***************
*** 233,238 ****
--- 234,240 ----
NOTICE: CREATE TABLE/PRIMARY KEY will create implicit index 'pktable_pkey' for table 'pktable'
CREATE TABLE FKTABLE ( ftest1 int REFERENCES PKTABLE MATCH FULL, ftest2 int );
NOTICE: CREATE TABLE will create implicit trigger(s) for FOREIGN KEY check(s)
+ NOTICE: _outNode: don't know how to print type 726
-- Insert test data into PKTABLE
INSERT INTO PKTABLE VALUES (1, 'Test1');
INSERT INTO PKTABLE VALUES (2, 'Test2');

Sample Code

No file was uploaded with this report

Responses

Browse pgsql-bugs by date

  From Date Subject
Next Message Tom Lane 2000-08-28 20:39:02 Re: foreign_key regression test fails on Solaris 2.6
Previous Message Karel Zak 2000-08-28 07:15:49 Re: [PATCHES] to_char() function's bug and it's patch