**Describe the bug** The [MySQL documentation](https://dev.mysql.com/doc/refman/8.4/en/functions.html#:~:text=By%20default%2C%20there%20must%20be,function%20names%20become%20reserved%20words.) states: > By default, there must be no whitespace between a function name and the parenthesis following it. This is currently not fixed by the formatter. **To Reproduce** Steps to reproduce the behavior: 1. Create new SQL file: `SELECT CAST (date_time AS DATETIME) AS date_time FROM TABLE;` 2. Right-Click "Format Document" (using SQLTools). **Expected behavior** The formatted query should look like this: ```sql SELECT CAST (date_time AS DATETIME) AS date_time FROM TABLE; ``` It should look like this (without the whitespace): ```sql SELECT CAST(date_time AS DATETIME) AS date_time FROM TABLE; ``` **Desktop (please complete the following information):** - SQLTools Version v0.14.1 - VS Code Version: 1.101.0 - OS: Linux