Hi there, we introduced a new syntax, which is in the following format:
<a_cloud_keyword>$<provider_name>$<product_name>
This whole thing is treated as a database, so we can do something like:
select * from <a_cloud_keyword>$<provider_name>$<product_name>.schema_a.table_a;
However, the highlight of this syntax is messed up by the existing doubleDollarQuotedStrings
syntax. So it will end up with something as the screenshot shows.
We don’t want to disable doubleDollarQuotedStrings
since we still want to support this syntax, but how should we also support my new syntax as the same time?
Thanks!