In my hive requests, some variables are set.
However, I realized that the bush remembers the expression, not the value, for example:
set a=1 ; set b=2 ; set c= ${hiveconf:a} + ${hiveconf:b} ; set c ;
Why doesn't Hive value value? Is there a way to set the hive so that set c ; will return c= 3 in the previous example?
source share