Merge pull request #4390 from citusdata/fix-transaction-name-length-calculation

Fix transaction name length calculation
pull/4394/head
Ahmet Gedemenli 2020-12-07 12:56:13 +03:00 committed by GitHub
commit 45ac491885
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1291,7 +1291,7 @@ CheckRemoteTransactionsHealth(void)
*
* citus_<source group>_<pid>_<distributed transaction number>_<connection number>
*
* (at most 5+1+10+1+10+20+1+10 = 58 characters, while limit is 64)
* (at most 5+1+10+1+10+1+20+1+10 = 59 characters, while limit is 64)
*
* The source group is used to distinguish 2PCs started by different
* coordinators. A coordinator will only attempt to recover its own 2PCs.