> create database tpt_test > CREATE RETENTION POLICY a ON tpt_test DURATION 100d REPLICATION 1 > use tpt_test Using database tpt_test > INSERT INTO a treasures,action=1 value=2 Using retention policy a > INSERT INTO a treasures,action=2 value=2 Using retention policy a > INSERT INTO a treasures,action=3 value=2 Using retention policy a > select * from a.treasures where time >= now() - 1h name: treasures --------------- time action value 1469794839868992000 1 2 1469794850092576700 2 2 1469794856004914900 3 2
> select * from a.treasures where action=1 And time >= now() - 1h result is empty. why? > show series result is empty. why? -- Remember to include the InfluxDB version number with all issue reports --- You received this message because you are subscribed to the Google Groups "InfluxDB" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/influxdb. To view this discussion on the web visit https://groups.google.com/d/msgid/influxdb/0b34e3ba-8e25-4ca8-9cd5-97421f9c78d8%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
