mirror of
https://github.com/postgres/postgres.git
synced 2025-07-28 23:42:10 +03:00
Adjust error message
We usually don't use "namespace" in user-facing error messages. Also, in master this was replaced by another error message referring to "temporary objects", so we might as well use that here to avoid introducing too many variants. Discussion: https://www.postgresql.org/message-id/bbd3f8d9-e3d5-e5aa-4305-7f0121c3fa94@2ndquadrant.com
This commit is contained in:
@ -2305,7 +2305,7 @@ PrepareTransaction(void)
|
||||
if ((MyXactFlags & XACT_FLAGS_ACCESSEDTEMPNAMESPACE))
|
||||
ereport(ERROR,
|
||||
(errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
|
||||
errmsg("cannot PREPARE a transaction that has operated on temporary namespace")));
|
||||
errmsg("cannot PREPARE a transaction that has operated on temporary objects")));
|
||||
|
||||
/*
|
||||
* Likewise, don't allow PREPARE after pg_export_snapshot. This could be
|
||||
|
Reference in New Issue
Block a user