Skip to content

Commit

Permalink
LDEV-4867 trim qoq cleaned sql text to keep parser happy
Browse files Browse the repository at this point in the history
  • Loading branch information
zspitzer committed Jul 1, 2024
1 parent ed29db5 commit 6acc9ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/lucee/commons/lang/ParserString.java
Original file line number Diff line number Diff line change
Expand Up @@ -760,7 +760,7 @@ public String stripComments(String sql) {
aprint.out( sb.toString() );
aprint.out( "-----stripComments END---" );
*/
return sb.toString();
return sb.toString().trim();
}

public void revertRemoveSpace() {
Expand Down

0 comments on commit 6acc9ae

Please sign in to comment.