File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -4336,6 +4336,9 @@ ATWrongRelkindError(Relation rel, int allowed_targets)
43364336 case ATT_TABLE | ATT_VIEW :
43374337 msg = _ ("\"%s\" is not a table or view" );
43384338 break ;
4339+ case ATT_TABLE | ATT_VIEW | ATT_FOREIGN_TABLE :
4340+ msg = _ ("\"%s\" is not a table, view or foreign table" );
4341+ break ;
43394342 case ATT_TABLE | ATT_VIEW | ATT_MATVIEW | ATT_INDEX :
43404343 msg = _ ("\"%s\" is not a table, view, materialized view, or index" );
43414344 break ;
@@ -4345,6 +4348,9 @@ ATWrongRelkindError(Relation rel, int allowed_targets)
43454348 case ATT_TABLE | ATT_MATVIEW | ATT_INDEX :
43464349 msg = _ ("\"%s\" is not a table, materialized view, or index" );
43474350 break ;
4351+ case ATT_TABLE | ATT_MATVIEW | ATT_FOREIGN_TABLE :
4352+ msg = _ ("\"%s\" is not a table, materialized view, or foreign table" );
4353+ break ;
43484354 case ATT_TABLE | ATT_FOREIGN_TABLE :
43494355 msg = _ ("\"%s\" is not a table or foreign table" );
43504356 break ;
You can’t perform that action at this time.
0 commit comments