Dollar quoted strings are identified as Column instead of StringValue.
This is PostgreSQL-only syntax: dollar-quoted strings ($$...$$) let users write multi-line strings with quotes and backslashes, without escaping.
Since this is PostgreSQL-specific syntax, it may not be a priority to implement, but I’m raising it here to start a discussion.
SELECT $$this is a string$$, test, 'text' FROM tbl;
Screenshot from the interactive demo:

Dollar quoted strings are identified as
Columninstead ofStringValue.This is PostgreSQL-only syntax: dollar-quoted strings
($$...$$)let users write multi-line strings with quotes and backslashes, without escaping.Since this is PostgreSQL-specific syntax, it may not be a priority to implement, but I’m raising it here to start a discussion.
SELECT $$this is a string$$, test, 'text' FROM tbl;Screenshot from the interactive demo: