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
System info:
Influxdb: 1.5.3
SySTEM: Linux 3.16.0-4-amd64 #1 SMP Debian 3.16.43-2+deb8u5 (2017-09-19) x86_64 GNU/Linux
Steps to reproduce:
1. Create CONTINUOUS QUERIES:
Use CONTINUOUS QUERY to Calculate sum and count of filed1 into a new rention policy measurement. CREATE CONTINUOUS QUERY "test" ON "default" BEGIN SELECT sum(field1) AS field1_count, count(filed1) AS all_filed1_count INTO "default"."test1"."test1" FROM "default"."test2"."test2" GROUP BY time(5m, 0s) fill(0) END
Expected behavior: data match
Actual behavior: 1. Query from raw measurement: SELECT sum(field1) AS filed1_count, count(field1) AS all_filed1_count FROM "test2"."test2" where time > 1534658300000000000 GROUP BY time(5m, 0s) fill(0) order by time desc
Result:
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
This issue has been automatically closed because it has not had recent activity. Please reopen if this issue is still important to you. Thank you for your contributions.
System info:
Influxdb: 1.5.3
SySTEM: Linux 3.16.0-4-amd64 #1 SMP Debian 3.16.43-2+deb8u5 (2017-09-19) x86_64 GNU/Linux
Steps to reproduce:
1. Create CONTINUOUS QUERIES:
Use CONTINUOUS QUERY to Calculate
sum
andcount
of filed1 into a new rention policy measurement.CREATE CONTINUOUS QUERY "test" ON "default" BEGIN SELECT sum(field1) AS field1_count, count(filed1) AS all_filed1_count INTO "default"."test1"."test1" FROM "default"."test2"."test2" GROUP BY time(5m, 0s) fill(0) END
Expected behavior:
data match
Actual behavior:
1. Query from raw measurement:
SELECT sum(field1) AS filed1_count, count(field1) AS all_filed1_count FROM "test2"."test2" where time > 1534658300000000000 GROUP BY time(5m, 0s) fill(0) order by time desc
Result:
2. Query from Continuous queries measurement:
SELECT filed1_count, all_filed1_count FROM "test1"."test1" order by time desc limit 10;
Result:
Problem
The query result differs
The text was updated successfully, but these errors were encountered: