ATT_FOREIGN_TABLE and ATWrongRelkindError() - Mailing list pgsql-hackers

From Amit Langote
Subject ATT_FOREIGN_TABLE and ATWrongRelkindError()
Date
Msg-id 562727CC.5000100@lab.ntt.co.jp
Whole thread Raw
Responses Re: ATT_FOREIGN_TABLE and ATWrongRelkindError()  (Robert Haas <robertmhaas@gmail.com>)
List pgsql-hackers
Hi,

This may just be nitpicking but I noticed that ATWrongRelkindError() could
emit a better message in case of such errors during ALTER COLUMN DEFAULT
and  ALTER COLUMN SET STORAGE than "%s is of the wrong type" which is what
it would emit now. Just need to add a couple of cases to the switch there:

+ case ATT_TABLE | ATT_VIEW | ATT_FOREIGN_TABLE:
+     msg = _("\"%s\" is not a table, view or foreign table");
+     break;

+ case ATT_TABLE | ATT_MATVIEW | ATT_FOREIGN_TABLE:
+     msg = _("\"%s\" is not a table, materialized view, or foreign table");
+     break;

Attached adds those.

Thanks,
Amit

Attachment

pgsql-hackers by date:

Previous
From: Fabien COELHO
Date:
Subject: Re: checkpointer continuous flushing
Next
From: Michael Paquier
Date:
Subject: Re: [PATCH v3] GSSAPI encryption support