Qovery / Replibyte

Seed your development database with real data ⚡️
https://www.replibyte.com
GNU General Public License v3.0
4.18k stars 129 forks source link

Fix: parsing statements with comments #141

Closed evoxmusic closed 2 years ago

evoxmusic commented 2 years ago

This PR fix statements with multiple comments like this one below:

-- this is a first comment
-- this is a second comment
SELECT * -- this is a third comment
FROM user -- this is a fourth comment
-- this is a fifth comment
WHERE age > 18;