midnight2104 opened a new issue #3088:
URL: https://github.com/apache/incubator-shenyu/issues/3088


   ### Description
   
   Hi Community:
   This PR is to format the current SQL, following the principle of 
left-aligning keywords (Uppercase) and right-aligning fields. I would like to 
make this task a good first issue so that new comers can get involved in 
handling the rest of the SQL file. Do you think it's a good idea?
   
   for example:
   before formatting:
   
   ```SQL
   select id, name, age from user where id = 1
   ```
   
   after formatting
   
   ```SQL
     SELECT id, 
                 name, 
                 age 
      FROM user
    WHERE id = 1
   ```
   
   
   ### Task List
   
   1. app-auth-sqlmap.xml @midnight2104 
   2. auth-param-sqlmap.xml
   3. auth-path-sqlmap.xml
   4. dashboard-user-sqlmap.xml
   5. data-permission-sqlmap.xml
   6. meta-data-sqlmap.xml
   7. permission-sqlmap.xml
   8. plugin-handle-sqlmap.xml
   9. plugin-sqlmap.xml
   10. resouce-sqlmap.xml
   11. role-sqlmap.xml
   12. rule-condition-sqlmap.xml
   13. rule-sqlmap.xml
   14. selector-condition-sqlmap.xml
   15. selector-sqlmap.xml
   16. shenyu-dict-sqlmap.xml
   17. user-role-sqlmap.xml


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to