drepl icon indicating copy to clipboard operation
drepl copied to clipboard

multi-line strings aren't recognized correctly.

Open MartinNowak opened this issue 8 years ago • 0 comments

enum nestedStmtTmplt = q"SQL
    SELECT COUNT(*) cnt, tags1.name, tags1.id
    FROM track_tags track_tags1
    JOIN tags tags1 ON tags1.id = track_tags1.tag_id
    GROUP BY track_tags1.tag_id
    ORDER BY cnt DESC
    LIMIT -1;
SQL";

MartinNowak avatar Sep 28 '17 22:09 MartinNowak