File tree 1 file changed +6
-0
lines changed 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -4339,6 +4339,9 @@ ATWrongRelkindError(Relation rel, int allowed_targets)
4339
4339
case ATT_TABLE | ATT_VIEW :
4340
4340
msg = _ ("\"%s\" is not a table or view" );
4341
4341
break ;
4342
+ case ATT_TABLE | ATT_VIEW | ATT_FOREIGN_TABLE :
4343
+ msg = _ ("\"%s\" is not a table, view or foreign table" );
4344
+ break ;
4342
4345
case ATT_TABLE | ATT_VIEW | ATT_MATVIEW | ATT_INDEX :
4343
4346
msg = _ ("\"%s\" is not a table, view, materialized view, or index" );
4344
4347
break ;
@@ -4348,6 +4351,9 @@ ATWrongRelkindError(Relation rel, int allowed_targets)
4348
4351
case ATT_TABLE | ATT_MATVIEW | ATT_INDEX :
4349
4352
msg = _ ("\"%s\" is not a table, materialized view, or index" );
4350
4353
break ;
4354
+ case ATT_TABLE | ATT_MATVIEW | ATT_FOREIGN_TABLE :
4355
+ msg = _ ("\"%s\" is not a table, materialized view, or foreign table" );
4356
+ break ;
4351
4357
case ATT_TABLE | ATT_FOREIGN_TABLE :
4352
4358
msg = _ ("\"%s\" is not a table or foreign table" );
4353
4359
break ;
You can’t perform that action at this time.
0 commit comments