-
Notifications
You must be signed in to change notification settings - Fork 4
Open
Description
It looks like the held in the YAML config file defining the query gets concatenated into a single string. This means you can't use a SQL comment. The work around is to use a YAML comment but that is not idea. If I have the following for a query it should work.
-- a SQL select stmt follows
select count(*) from tms;It should not be transforms into -- a SQL select stmt follows select count(*) from tms;.
Work around is to use a YAML comment character on the line.
# -- a SQL select stmt follows
select count(*) from tms;