Skip to content

SQL in query should support SQL comments #157

@rsdoiel

Description

@rsdoiel

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;

Metadata

Metadata

Assignees

Projects

No projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions