Description
Now the spark-sql does not support parse the sql statements with C-style comments.
For the sql statements:
/* SELECT 'test'; */ SELECT 'test';
Would be split to two statements:
The first: "/* SELECT 'test'"
The second: "*/ SELECT 'test'"
Then it would throw an exception because the first one is illegal.