Fix another test for RELKIND_RELATION that should allow foreign tables now.

Tom Lane <tgl@sss.pgh.pa.us>

Commit: 290713e31a1ee04eed7877985a4c28a30fd0d1db
Author: Tom Lane <tgl@sss.pgh.pa.us>
Date: 2015-04-28T19:34:35Z
Releases: 9.5.0
Fix another test for RELKIND_RELATION that should allow foreign tables now.

I thought I'd gone through all of these before, but a fresh review found
this one too.  (Perhaps it would be better to just delete this test and
let the failure occur later, but for the moment I'll preserve the logic.)

The case that this was rejecting is like
	CREATE FOREIGN TABLE ft (f1 int ...) ...;
	CREATE TABLE c1 (UNIQUE(f1)) INHERITS(ft);

Files

PathChange+/−
src/backend/parser/parse_utilcmd.c modified +4 −2