]> granicus.if.org Git - postgresql/commitdiff
Minor message style adjustment
authorPeter Eisentraut <peter_e@gmx.net>
Wed, 27 Jul 2011 20:54:46 +0000 (23:54 +0300)
committerPeter Eisentraut <peter_e@gmx.net>
Wed, 27 Jul 2011 20:55:32 +0000 (23:55 +0300)
src/backend/storage/lmgr/predicate.c

index 91052d30f086287cff3db098a8bf99bc231af2af..8e7a7f001dd122d9399618410260d3897c6c473f 100644 (file)
@@ -662,7 +662,7 @@ SetRWConflict(SERIALIZABLEXACT *reader, SERIALIZABLEXACT *writer)
        if (!conflict)
                ereport(ERROR,
                                (errcode(ERRCODE_OUT_OF_MEMORY),
-                                errmsg("not enough elements in RWConflictPool to record a rw-conflict"),
+                                errmsg("not enough elements in RWConflictPool to record a read/write conflict"),
                                 errhint("You might need to run fewer transactions at a time or increase max_connections.")));
 
        SHMQueueDelete(&conflict->outLink);
@@ -690,7 +690,7 @@ SetPossibleUnsafeConflict(SERIALIZABLEXACT *roXact,
        if (!conflict)
                ereport(ERROR,
                                (errcode(ERRCODE_OUT_OF_MEMORY),
-                                errmsg("not enough elements in RWConflictPool to record a potential rw-conflict"),
+                                errmsg("not enough elements in RWConflictPool to record a potential read/write conflict"),
                                 errhint("You might need to run fewer transactions at a time or increase max_connections.")));
 
        SHMQueueDelete(&conflict->outLink);