Merge pull request #41 from seebs/roaringProto

Stop using Roaring in protobuf messages until it's supported elsewhere
This commit is contained in:
seebs 2019-11-14 12:45:35 -06:00 committed by GitHub
commit 9cec40e69d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1262,7 +1262,7 @@ func encodeRow(r *pilosa.Row) *internal.Row {
Keys: r.Keys,
Attrs: encodeAttrs(r.Attrs),
}
if false {
if true {
ir.Columns = r.Columns()
} else {
ir.Roaring = r.Roaring()