I had a table, table2 that was a straight
SELECT * from table1
where table1 had a raw reflection. For some reason when building a reflection on table2 it did not use table1’s reflection. However when I spelled out all the columns explicitely:
SELECT col1, col2, col3 from table1
It suddenly DID start using the reflection. Is this intended behavior?