We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In #364, support was added to allow multiple materialized views to write to the same table using comments like --mv1:begin.
--mv1:begin
However, this does not play nice with SQL linters/formatters like sqlfmt since they format the comment to always contain a single space after --.
sqlfmt
--
Describe the solution you'd like Allow optional whitespaces e.g. -- mv1:begin
-- mv1:begin
Example: https://regex101.com/r/uS82lJ/1
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
In #364, support was added to allow multiple materialized views to write to the same table using comments like
--mv1:begin
.However, this does not play nice with SQL linters/formatters like
sqlfmt
since they format the comment to always contain a single space after--
.Describe the solution you'd like
Allow optional whitespaces e.g.
-- mv1:begin
Example: https://regex101.com/r/uS82lJ/1
The text was updated successfully, but these errors were encountered: