**Describe the bug** Importing Postgres schemas with `INET` type cause error: ``` SyntaxError [Ln 2, Col 12]: Expected [A-Za-z0-9_\-$一-龥À-ſ] but "," found. ``` **To Reproduce** Steps to reproduce the behavior: 1. Go to 'File/Import from SQL', upload a sql file with postgres `INET` type, 2. Click on 'Import' 3. See error `SyntaxError [Ln 2, Col 12]: Expected [A-Za-z0-9_\-$一-龥À-ſ] but "," found.` **Screenshots** <img width="582" height="403" alt="Image" src="https://github.com/user-attachments/assets/ac492d52-4f87-4ffe-b12b-0fb69def8324" /> **Additional context** ```sql CREATE TABLE test ( ip INET, ); ```