I want to run a SQL before a writer to a postgis database.
I am using parameters to dynamically run the SQL queries. Since SQL is case sensitive and my tables include case characters I need to put quotations around my table names. But putting quotes around my statement make it a string. I just want to add quotes the parameters value.
select * from "$(schema)"."(fme_feature_type)"
Desired result
select * from "MySchema"."A_Table"
Is there a way to escape the quotes somehow to just add quotes around the paramaneter value.