Skip to content

Commit

Permalink
fix #2599: remove some cruft
Browse files Browse the repository at this point in the history
  • Loading branch information
dgnorton committed May 27, 2015
1 parent 3174b2c commit dab1224
Showing 1 changed file with 0 additions and 20 deletions.
20 changes: 0 additions & 20 deletions influxql/engine.go
Original file line number Diff line number Diff line change
Expand Up @@ -939,26 +939,6 @@ type Row struct {
Err error `json:"err,omitempty"`
}

// type RowMarshalerJSON struct {
// epoch string
// }

// func (r *RowMarshalerJSON) MarshalJSON(v interface{}) ([]byte, error) {
// row := []struct{
// Name string `json:"name,omitempty"`
// Tags map[string]string `json:"tags,omitempty"`
// Columns []string `json:"columns"`
// Values [][]interface{} `json:"values,omitempty"`
// Err error `json:"err,omitempty"`
// }{
// Name: r.Name,
// Tags: = r.Tags,
// Columns: r.Columns,
// Err: r.Err,
// }

// }

// tagsHash returns a hash of tag key/value pairs.
func (r *Row) tagsHash() uint64 {
h := fnv.New64a()
Expand Down

0 comments on commit dab1224

Please sign in to comment.