From cd6b3f9605133c916336d563447c21736993934d Mon Sep 17 00:00:00 2001 From: Travis Date: Mon, 24 Apr 2017 18:43:33 -0500 Subject: [PATCH] During import, write to standard view as well as time views --- frame.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/frame.go b/frame.go index 14514cd01..0c2683333 100644 --- a/frame.go +++ b/frame.go @@ -529,6 +529,9 @@ func (f *Frame) Import(rowIDs, columnIDs []uint64, timestamps []*time.Time) erro inverse = []string{ViewInverse} } else { standard = ViewsByTime(ViewStandard, *timestamp, q) + // In order to match the logic of `SetBit()`, we want bits + // with timestamps to write to both time and standard views. + standard = append(standard, ViewStandard) inverse = ViewsByTime(ViewInverse, *timestamp, q) }