Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
neo
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
2
Merge Requests
2
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
Kirill Smelkov
neo
Commits
ba7d3185
Commit
ba7d3185
authored
Jul 25, 2018
by
Kirill Smelkov
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' into t
* master: go/zodb: Fix TxnStatus constants type
parents
d1acdf85
6d8e0d52
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
go/zodb/zodb.go
go/zodb/zodb.go
+3
-3
No files found.
go/zodb/zodb.go
View file @
ba7d3185
...
...
@@ -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()
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment