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

[1.2 regression] Selecting specific field from multiple RP's fails #8078

Closed
kostasb opened this issue Mar 1, 2017 · 1 comment
Closed

[1.2 regression] Selecting specific field from multiple RP's fails #8078

kostasb opened this issue Mar 1, 2017 · 1 comment

Comments

@kostasb
Copy link

kostasb commented Mar 1, 2017

influxdb_1.2.1~rc5

Repro case:

> create database db1 
> create retention policy rp1 on db1 duration 1w replication 1 default 
> create retention policy rp2 on db1 duration 1w replication 1 
> insert data,tag=1 value=1 
> insert data,tag=1 value=2
> insert data,tag=1 value=3
> select value from "db1"."rp1"."data"
name: data
time                value
----                -----
1488386247311798839 1
1488386257727415986 2
1488386259318734453 3
> select value from "db1"."rp1"."data","db1"."rp2"."data" 
> 

(select * works)
> select * from "db1"."rp1"."data","db1"."rp2"."data" 
name: data
time                tag value
----                --- -----
1488386247311798839 1   1
1488386257727415986 1   2
1488386259318734453 1   3


...

downgrade to 1.1.1:

> select value from "db1"."rp1"."data","db1"."rp2"."data" 
name: data
time			value
----			-----
1488386247311798839	1
1488386257727415986	2
1488386259318734453	3


@jsternberg
Copy link
Contributor

Fixed via #8079.

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

3 participants