I've been using SHOW_INITIAL_ROWS parameter in Snowflake when creating a new Stream on a table and it's always worked fine.
For some reason, the stream created in one of the tables is raising an error when some select statement is run against it.
Time travel data is not available for table [...]. The requested time is either beyond the allowed time travel period or before the object creation time
All the tables have time travel enabled and the statement I use to create the streams are something like:
create or replace stream <database>.<schema>.<stream>
on table <database>.<schema>.<table> SHOW_INITIAL_ROWS = TRUE;
Does anyone know if SHOW_INITIAL_ROWS is somehow related to time travel? If yes, what could be causing this error?