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
Currently, uroborosql-fmt places SQL_ID after the 'recursive' keyword.
with recursive /* _SQL_ID_ */ t ( n ) as ( select n + 1 from t where n < 100 ) select sum(n) from t ;
However, should we place SQL_ID after the 'WITH' keyword instead?
with /* _SQL_ID_ */ recursive t ( n ) as ( select n + 1 from t where n < 100 ) select sum(n) from t ;
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently, uroborosql-fmt places SQL_ID after the 'recursive' keyword.
However, should we place SQL_ID after the 'WITH' keyword instead?
The text was updated successfully, but these errors were encountered: