I'm curious what happens to the temporary table of a query, when there
is another query in the pipe: I have a query (Q1) that has its results
in a temporary table (T1).The flow then continues to another query (Q2)
that is NOT quering the T1 or even same dimension as T1, it's a
completely new, separate query, that just is in the same flow.It will
have its results in a new Temporary table (T2). But what exactly happens
to T1? Is it dropped?Does it stay in memory until the whole WF is
stopped?Somet...