From 6fc6cc4350dec5dd216755e1521b70f8c2a2cef2 Mon Sep 17 00:00:00 2001 From: Seebs Date: Thu, 14 Nov 2019 10:54:40 -0600 Subject: [PATCH] Stop using Roaring in protobuf messages until it's supported elsewhere go-pilosa uses protobuf to talk to us but doesn't support the roaring format. Conveniently, there's a kill switch. --- encoding/proto/proto.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/encoding/proto/proto.go b/encoding/proto/proto.go index 62e948c48..9a4daa268 100644 --- a/encoding/proto/proto.go +++ b/encoding/proto/proto.go @@ -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()