Skip to content

Commit

Permalink
Merge branch 'seiflotfy-fix6294'
Browse files Browse the repository at this point in the history
  • Loading branch information
benbjohnson committed Apr 14, 2016
2 parents 03bbff1 + 64a4808 commit 8838843
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
- [#6202](https://github.com/influxdata/influxdb/pull/6202): Check default SHARD DURATION when recreating the same database.
- [#6296](https://github.com/influxdata/influxdb/issues/6296): Allow the implicit time field to be renamed again.
- [#6379](https://github.com/influxdata/influxdb/issues/6379): Validate the first argument to percentile() is a variable.
- [#6294](https://github.com/influxdata/influxdb/issues/6294): Fix panic running influx_inspect info.

## v0.12.0 [2016-04-05]
### Release Notes
Expand Down
3 changes: 3 additions & 0 deletions cmd/influx_inspect/info.go
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,9 @@ func cmdInfo(path string) {
for _, shardID := range shardIDs {
shard := tstore.Shard(shardID)
codec := shard.FieldCodec(m.Name)
if codec == nil {
continue
}
for _, field := range codec.Fields() {
ft := fmt.Sprintf("%s:%s", field.Name, field.Type)
fmt.Fprintf(tw, "%d\t%s\t%s\t%d/%d\t%d [%s]\t%d\n", shardID, db, m.Name, len(tags), tagValues,
Expand Down

0 comments on commit 8838843

Please sign in to comment.