I wrote a query where I misspelled the alias I was using (this is pseudocode)
SELECT
ma.name
FROM mytable my
Teradata SQL Assistant did not give its usual error message saying ma does not exist, but ran for a long time and spooled out. I believe Teradata was processing all the rows in mytable.
When I changed the column selector to my.name the query ran as expected.
My question is, is it possible to see what Teradata SQL Assistant thinks the value of ma is?
Is there some setting which might define the default value of ma?
ma is not a column name in mytable