This message was deleted.
# troubleshooting
s
This message was deleted.
s
Hi @tilak chowdary. I think you just need to change the quotes on the clustered by column as in:
Copy code
REPLACE INTO "SpanView"
OVERWRITE WHERE __time >= TIMESTAMP '2023-06-09 07:00:00' AND __time < TIMESTAMP '2023-06-09 08:00:00'
select * from "SpanView"
WHERE __time >= TIMESTAMP '2023-06-09 07:00:00' AND __time < TIMESTAMP '2023-06-09 08:00:00'
PARTITIONED BY HOUR
CLUSTERED BY "tenantId"
with single quotes it is just a literal value.
t
@Sergio Ferragut thanks.