Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Inconsistent column output from Influx CLI #7297

Closed
jsternberg opened this issue Sep 12, 2016 · 0 comments
Closed

Inconsistent column output from Influx CLI #7297

jsternberg opened this issue Sep 12, 2016 · 0 comments

Comments

@jsternberg
Copy link
Contributor

Bug report

System info: InfluxDB 1.0

Steps to reproduce:

cpu,host=server01 value=2
cpu,host=server02 value=4
> SELECT * FROM cpu
name: cpu
---------
time                    host            value
1473696334039442966     server01        2
1473696337750255683     server02        3

name: cpu
tags: host=server01
time                    value
----                    -----
1473696334039442966     2

name: cpu
tags: host=server02
time                    value
----                    -----
1473696337750255683     3

> SHOW RETENTION POLICIES ON <db>
name    duration        shardGroupDuration      replicaN        default
autogen 0               168h0m0s                1               true

Expected behavior: I expect the second to be correct, but I at least expect them to be consistent.

Actual behavior: The first puts the dashes right below name, but not after the columns. The second seems to put them in the correct place. The third just forgets them entirely.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants