Version: `dev-master` ### Bug Description When you use single quote `'` or `"` in a SQL comment, dibi fails with `Dibi\Exception: SQL translate error: Alone quote` ### Steps To Reproduce Make a comment in SQL query containg single `'` or `"` in it. E.g. in `tests/dibi/Connection.fetch.phpt`: ```php $res = $conn->query(<<<SQL SELECT [title] FROM [products] ORDER BY [product_id] -- this isn't working SQL ); ``` ### Expected Behavior Pass without problem