I have a query defined in a properties file like this
config.properties
DYNAMIC_SELECT=select * from accounts where username=${username}
I then have a Table Input where the variable DYNAMIC_SELECT is used like this
${DYNAMIC_SELECT}
How should I setup my transformation such that the Table Input works?