Location via proxy:
[ UP ]
[Report a bug]
[Manage cookies]
No cookies
No scripts
No ads
No referrer
Show this form
projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
dbe6f43
)
Fix incorrect message in ATWrongRelkindError.
author
Robert Haas
<rhaas@postgresql.org>
Wed, 28 Oct 2015 10:44:47 +0000
(11:44 +0100)
committer
Robert Haas
<rhaas@postgresql.org>
Wed, 28 Oct 2015 10:47:19 +0000
(11:47 +0100)
Mistake introduced by commit
3bf3ab8c563699138be02f9dc305b7b77a724307
.
Etsuro Fujita
src/backend/commands/tablecmds.c
patch
|
blob
|
blame
|
history
diff --git
a/src/backend/commands/tablecmds.c
b/src/backend/commands/tablecmds.c
index a5bc508e15d6624c297679e5c02dbecfac3d6f46..6436d0cc04b00a31525c946718b3faca4f258457 100644
(file)
--- a/
src/backend/commands/tablecmds.c
+++ b/
src/backend/commands/tablecmds.c
@@
-4358,7
+4358,7
@@
ATWrongRelkindError(Relation rel, int allowed_targets)
msg = _("\"%s\" is not a table, composite type, or foreign table");
break;
case ATT_TABLE | ATT_MATVIEW | ATT_INDEX | ATT_FOREIGN_TABLE:
- msg = _("\"%s\" is not a table, materialized view,
composite type
, or foreign table");
+ msg = _("\"%s\" is not a table, materialized view,
index
, or foreign table");
break;
case ATT_VIEW:
msg = _("\"%s\" is not a view");