Improve the protocol message descriptions for 2PC logical replication.
authorAmit Kapila
Wed, 10 Aug 2022 11:00:59 +0000 (16:30 +0530)
committerAmit Kapila
Wed, 10 Aug 2022 11:00:59 +0000 (16:30 +0530)
The messages were using 'two-phase transaction' at some places and
'prepared transaction' at other places. Make them consistently use
'prepared transaction'.

Reported-by: Ekaterina Kiryanova
Author: Peter Smith
Reviewed by: Amit Kapila
Backpatch-through: 15
Discussion: https://postgr.es/m/745414e7-efb2-a6ae-5b83-fcbdf35aabc8@postgrespro.ru

doc/src/sgml/protocol.sgml

index d3296b34acb35bbedea28a1757b588afc66c6180..c549c0858a0c9f5bb57f964b301fcabee087f44a 100644 (file)
@@ -6895,7 +6895,7 @@ psql "dbname=postgres replication=database" -c "IDENTIFY_SYSTEM;"
        Byte1('b')
        
         
-         Identifies the message as the beginning of a two-phase transaction message.
+         Identifies the message as the beginning of a prepared transaction message.
         
        
       
@@ -6941,7 +6941,7 @@ psql "dbname=postgres replication=database" -c "IDENTIFY_SYSTEM;"
        String
        
         
-         The user defined GID of the two-phase transaction.
+         The user defined GID of the prepared transaction.
         
        
       
@@ -6957,7 +6957,7 @@ psql "dbname=postgres replication=database" -c "IDENTIFY_SYSTEM;"
        Byte1('P')
        
         
-         Identifies the message as a two-phase prepared transaction message.
+         Identifies the message as a prepared transaction message.
         
        
       
@@ -7012,7 +7012,7 @@ psql "dbname=postgres replication=database" -c "IDENTIFY_SYSTEM;"
        String
        
         
-         The user defined GID of the two-phase transaction.
+         The user defined GID of the prepared transaction.
         
        
       
@@ -7028,7 +7028,7 @@ psql "dbname=postgres replication=database" -c "IDENTIFY_SYSTEM;"
        Byte1('K')
        
         
-         Identifies the message as the commit of a two-phase transaction message.
+         Identifies the message as the commit of a prepared transaction message.
         
        
       
@@ -7046,7 +7046,7 @@ psql "dbname=postgres replication=database" -c "IDENTIFY_SYSTEM;"
        Int64 (XLogRecPtr)
        
         
-         The LSN of the commit prepared.
+         The LSN of the commit of the prepared transaction.
         
        
       
@@ -7055,7 +7055,7 @@ psql "dbname=postgres replication=database" -c "IDENTIFY_SYSTEM;"
        Int64 (XLogRecPtr)
        
         
-         The end LSN of the commit prepared transaction.
+         The end LSN of the commit of the prepared transaction.
         
        
       
@@ -7083,7 +7083,7 @@ psql "dbname=postgres replication=database" -c "IDENTIFY_SYSTEM;"
        String
        
         
-         The user defined GID of the two-phase transaction.
+         The user defined GID of the prepared transaction.
         
        
       
@@ -7099,7 +7099,7 @@ psql "dbname=postgres replication=database" -c "IDENTIFY_SYSTEM;"
        Byte1('r')
        
         
-         Identifies the message as the rollback of a two-phase transaction message.
+         Identifies the message as the rollback of a prepared transaction message.
         
        
       
@@ -7126,7 +7126,7 @@ psql "dbname=postgres replication=database" -c "IDENTIFY_SYSTEM;"
        Int64 (XLogRecPtr)
        
         
-         The end LSN of the rollback prepared transaction.
+         The end LSN of the rollback of the prepared transaction.
         
        
       
@@ -7164,7 +7164,7 @@ psql "dbname=postgres replication=database" -c "IDENTIFY_SYSTEM;"
        String
        
         
-         The user defined GID of the two-phase transaction.
+         The user defined GID of the prepared transaction.
         
        
       
@@ -7180,7 +7180,7 @@ psql "dbname=postgres replication=database" -c "IDENTIFY_SYSTEM;"
        Byte1('p')
        
         
-         Identifies the message as a two-phase stream prepare message.
+         Identifies the message as a stream prepared transaction message.
         
        
       
@@ -7207,7 +7207,7 @@ psql "dbname=postgres replication=database" -c "IDENTIFY_SYSTEM;"
        Int64 (XLogRecPtr)
        
         
-         The end LSN of the prepare transaction.
+         The end LSN of the prepared transaction.
         
        
       
@@ -7235,7 +7235,7 @@ psql "dbname=postgres replication=database" -c "IDENTIFY_SYSTEM;"
        String
        
         
-         The user defined GID of the two-phase transaction.
+         The user defined GID of the prepared transaction.