修复不使用`将sql的每一行包裹,导致原始sql有换行时生成的sql粘连问题 by JiajieZeee · Pull Request #586 · rbatis/rbatis
Navigation Menu
- Notifications You must be signed in to change notification settings
- Fork 167
Conversation
select user_id, user_name \n from user )], 生成的sql为 : select user_id, user_namefrom user,修改后生成的sql为:select user_id, user_name from user)
Jiajie6591 added 3 commits
July 29, 2025 13:17This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters