forked from fl00r/go-tarantool-1.6
-
Notifications
You must be signed in to change notification settings - Fork 60
Closed
Labels
Description
https://www.tarantool.io/ru/doc/latest/dev_guide/internals/iproto/requests/#examples
IPROTO_UPDATE
operation #
(delete) could contains 2 (or 3 ?) fields, :
(splice) - 5 fields. But we always use 3-fields format:
Lines 64 to 69 in c564e6d
func (o Op) EncodeMsgpack(enc *msgpack.Encoder) error { | |
enc.EncodeArrayLen(3) | |
enc.EncodeString(o.Op) | |
enc.EncodeInt(int64(o.Field)) | |
return enc.Encode(o.Arg) | |
} |