gianm commented on issue #17949:
URL: https://github.com/apache/druid/issues/17949#issuecomment-2861790246
Btw, here's the SQL to load the table:
```sql
REPLACE INTO "values"
OVERWRITE ALL
SELECT TIME_PARSE(ts) AS __time, "value"
FROM (VALUES('2025-04-24 21:20:10', 1), ('2025-04-24 21:21:10', 2),
('2025-04-24 21:22:10', 3)) AS t(ts, c1)
PARTITIONED BY HOUR
```
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]