Suppose I have a Hive query like this:
insert into table my_table
select 1, ${hiveconf:my_variable}
from some_other_table;
Is there a config setting so that the value of "my_variable" will be displayed in the logging or in the verbose output of the query?
All I ever see is "${hiveconf:my_variable}".
Thanks!