dsilletti commented on issue #17030: URL: https://github.com/apache/iotdb/issues/17030#issuecomment-3799462923
Any feedback? The issue is still present in version 2.0.6 and is causing major operational issues. ``` IoTDB> SELECT Wh_in FROM root.electricity.measured.1h.RE6809B4188534 WHERE time >= 2025-10-01T00:00:00.000 AND time < 2025-10-31T00:00:00.000; +----+-------------------------------------------------+ |Time|root.electricity.measured.1h.RE6809B4188534.Wh_in| +----+-------------------------------------------------+ +----+-------------------------------------------------+ Empty set. It costs 0.004s IoTDB> SELECT Wh_in FROM root.electricity.measured.1h.RE6809B4188534 WHERE time >= 2025-10-01T00:00:00.000 AND time < 2025-11-30T00:00:00.000; +----+-------------------------------------------------+ |Time|root.electricity.measured.1h.RE6809B4188534.Wh_in| +----+-------------------------------------------------+ +----+-------------------------------------------------+ Empty set. It costs 0.004s IoTDB> SELECT Wh_in FROM root.electricity.measured.1h.RE6809B4188534 WHERE time >= 2025-10-01T00:00:00.000 AND time < 2025-12-31T00:00:00.000; +----+-------------------------------------------------+ |Time|root.electricity.measured.1h.RE6809B4188534.Wh_in| +----+-------------------------------------------------+ +----+-------------------------------------------------+ Empty set. It costs 0.004s IoTDB> SELECT Wh_in FROM root.electricity.measured.1h.RE6809B4188534 WHERE time >= 2025-10-01T00:00:00.000 AND time < 2026-01-31T00:00:00.000; +------------------------+-------------------------------------------------+ | Time|root.electricity.measured.1h.RE6809B4188534.Wh_in| +------------------------+-------------------------------------------------+ |2025-10-01T00:00:00.000Z| 951.3523| |2025-10-01T01:00:00.000Z| 247.8693| |2025-10-01T02:00:00.000Z| 284.12674| |2025-10-01T03:00:00.000Z| 167.4874| |2025-10-01T04:00:00.000Z| 151.3365| |2025-10-01T05:00:00.000Z| 78.40029| |2025-10-01T06:00:00.000Z| 0.3396303| |2025-10-01T07:00:00.000Z| 1.9803576| |2025-10-01T09:00:00.000Z| 18.348997| |2025-10-01T12:00:00.000Z| 33.285015| |2025-10-01T13:00:00.000Z| 37.49123| |2025-10-01T14:00:00.000Z| 0.005350468| |2025-10-01T15:00:00.000Z| 74.59431| |2025-10-01T16:00:00.000Z| 143.50473| |2025-10-01T17:00:00.000Z| 155.15512| |2025-10-01T18:00:00.000Z| 153.71025| |2025-10-01T19:00:00.000Z| 165.1661| |2025-10-01T20:00:00.000Z| 160.29599| |2025-10-01T21:00:00.000Z| 553.18304| |2025-10-01T22:00:00.000Z| 154.47058| |2025-10-01T23:00:00.000Z| 157.69336| |2025-10-02T00:00:00.000Z| 265.69928| |2025-10-02T01:00:00.000Z| 385.16846| |2025-10-02T02:00:00.000Z| 286.48877| |2025-10-02T03:00:00.000Z| 157.10233| |2025-10-02T04:00:00.000Z| 146.5069| |2025-10-02T05:00:00.000Z| 122.33479| |2025-10-02T06:00:00.000Z| 38.112072| |2025-10-02T12:00:00.000Z| 18.468697| |2025-10-02T13:00:00.000Z| 80.8994| ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
