Commit 0d0ce246 authored by Kirill Smelkov's avatar Kirill Smelkov

.

parent f84a1095
......@@ -15,8 +15,8 @@ type Xid struct {
const (
INVALID_UUID UUID = 0
INVALID_TID TID = 0xffffffffffffffff // 1<<64 - 1
INVALID_OID OID = 0xffffffffffffffff // 1<<64 - 1
INVALID_TID TID = 1<<64 - 1 // 0xffffffffffffffff TODO recheck it is the same
INVALID_OID OID = 0xffffffffffffffff // 1<<64 - 1
ZERO_TID TID = 0 // XXX or simply TID{} ? // XXX -> TID0 ?
ZERO_OID OID = 0 // XXX or simply OID{} ? // XXX -> OID0
// OID_LEN = 8
......
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