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
Is your feature request related to a problem? Please describe. Functions can be formatted better for better readability
Describe the solution you'd like This code
DROP Function IF EXISTS `last_file_id`; DELIMITER # CREATE /* DEFINER=`minidwh`@`%` */ FUNCTION `last_file_id`(report_type char(3)) RETURNS int(11) BEGIN return(select max(id) __file_id from file_exist where `type`= report_type); END# DELIMITER ;
Is formatted as
DROP Function IF EXISTS `last_file_id`; DELIMITER # CREATE /* DEFINER=`minidwh`@`%` */ FUNCTION `last_file_id`(report_type char(3)) RETURNS int(11) BEGIN return( select max(id) __file_id from file_exist where `type` = report_type ); END # DELIMITER ;
which makes it harder to read.
Describe alternatives you've considered VSCode build SQL formatter does a better job but has other issues
Additional context Add any other context or screenshots about the feature request here.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Is your feature request related to a problem? Please describe.
Functions can be formatted better for better readability
Describe the solution you'd like
This code
Is formatted as
which makes it harder to read.
Describe alternatives you've considered
VSCode build SQL formatter does a better job but has other issues
Additional context
Add any other context or screenshots about the feature request here.
The text was updated successfully, but these errors were encountered: