You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
select a.value / b.value from test1 as a inner join test2 as b
This crashes InfluxDB with this log output. Note the crash occurs only with two or more points in the series. With a single point, a runtime error is logged, but InfluxDB returns an empty result set and continues to run.
The text was updated successfully, but these errors were encountered:
create db issue1022
\db issue1022
bind
insert into test1 values (1413023086000,50001,0)
insert into test1 values (1413023014000,30001,0)
insert into test1 values (1413023013000,20001,2)
insert into test2 values (1413023086000,60001,0)
insert into test2 values (1413023014000,40001,0)
insert into test2 values (1413023013000,20001,1)
select a.value / b.value from test1 as a inner join test2 as b
delete db issue1022
This is on InfluxDB 0.8.3, 64-bit RPM on Fedora 20.
I have two series, "test1" and "test2":
select * from test1
select * from test2
Now I run the following query:
This crashes InfluxDB with this log output. Note the crash occurs only with two or more points in the series. With a single point, a runtime error is logged, but InfluxDB returns an empty result set and continues to run.
The text was updated successfully, but these errors were encountered: