BUG #15451: Error adding foriegn key constraint - Mailing list pgsql-bugs

From PG Bug reporting form
Subject BUG #15451: Error adding foriegn key constraint
Date
Msg-id 15451-d33ba98cab3afa91@postgresql.org
Whole thread Raw
Responses Re: BUG #15451: Error adding foriegn key constraint  (Alvaro Herrera <alvherre@2ndquadrant.com>)
Re: BUG #15451: Error adding foriegn key constraint  (Andres Freund <andres@anarazel.de>)
List pgsql-bugs
The following bug has been logged on the website:

Bug reference:      15451
Logged by:          Harry Clarke
Email address:      harry@harryclarke.me.uk
PostgreSQL version: 10.5
Operating system:   Windows Server 2008 R2 standard
Description:

When trying to create a table, or to add a foreign key constraint to a
table, an error (see below) is produced. However, both tables are permanent
tables, and there are no temporary tables that I am aware of.

ERROR: constraints on permanent tables may reference only permanent tables

ALTER TABLE bnm.table1
    ADD CONSTRAINT id_fk FOREIGN KEY (bnm_id)
    REFERENCES bnm.table2 (id) MATCH SIMPLE
    ON UPDATE NO ACTION
    ON DELETE NO ACTION;


pgsql-bugs by date:

Previous
From: Andres Freund
Date:
Subject: Re: BUG #15438: Standby corruption after "Too many open files insystem" error
Next
From: Andres Freund
Date:
Subject: Re: BUG #15451: Error adding foriegn key constraint