From b2a3b0b2c0880540749ee1227d4845dd810a60a9 Mon Sep 17 00:00:00 2001 From: Brian Muller Date: Sun, 6 Aug 2017 12:30:28 -0400 Subject: [PATCH] removed old reference to SetBitmapAttrs and fixed variable naming issue in example --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index e9952ac..e277fb6 100644 --- a/README.md +++ b/README.md @@ -199,7 +199,7 @@ Frame: * `InverseFilterFieldTopN(n uint64, bitmap *PQLBitmapQuery, field string, values ...interface{}) *PQLBitmapQuery` * `Range(rowID uint64, start time.Time, end time.Time) *PQLBitmapQuery` * `InverseRange(columnID uint64, start time.Time, end time.Time) *PQLBitmapQuery` -* `SetBitmapAttrs(rowID uint64, attrs map[string]interface{}) *PQLBaseQuery` +* `SetRowAttrs(rowID uint64, attrs map[string]interface{}) *PQLBaseQuery` ### Pilosa URI @@ -348,13 +348,13 @@ for column = range response.Columns() { * `Count` field to retrieve the number of rows per the given row ID returned from `Count` queries. ```go -bitmap := response.Bitmap +bitmap := result.Bitmap bits := bitmap.Bits attributes := bitmap.Attributes -countItems := response.CountItems +countItems := result.CountItems -count := response.Count +count := result.Count ``` ## Importing and Exporting Data