Commit ba7d3185 authored by Kirill Smelkov's avatar Kirill Smelkov

Merge branch 'master' into t

* master:
  go/zodb: Fix TxnStatus constants type
parents d1acdf85 6d8e0d52
......@@ -168,9 +168,9 @@ type DataInfo struct {
type TxnStatus byte
const (
TxnComplete TxnStatus = ' ' // completed transaction that hasn't been packed
TxnPacked = 'p' // completed transaction that has been packed
TxnInprogress = 'c' // checkpoint -- a transaction in progress; it's been thru vote() but not finish()
TxnComplete TxnStatus = ' ' // completed transaction that hasn't been packed
TxnPacked TxnStatus = 'p' // completed transaction that has been packed
TxnInprogress TxnStatus = 'c' // checkpoint -- a transaction in progress; it's been thru vote() but not finish()
)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment