NobiGo opened a new pull request #2442: URL: https://github.com/apache/calcite/pull/2442
When converting a sqlNode to Sql String, Missing space after "*" : ``` select *from tab ``` should be ``` select * from tab ``` or ``` select column1,column2,*from tab ``` should be ``` select column1,column2,* from tab ``` -- 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. For queries about this service, please contact Infrastructure at: [email protected]
