Rene Saarsoo

Results 487 comments of Rene Saarsoo

Thanks for reporting. As I see, this feature was added in [April 18 2024](https://cloud.google.com/bigquery/docs/release-notes#April_18_2024). The parser currently supports BigQuery as of 31 January 2024. I'll need to do a larger...

Thanks for reporting. I can confirm that the issue does reproduce, giving an error: ``` Parse error: Unexpected ":'val') FR" at line 1 column 25. SQL dialect used: "db2i". ```

I would be happy to do so, if only I knew how to do this. That is, I can probably figure it out (as I've done in the past for...

I would be fine with making it ESM-only. Personally for me, the only use case of this library is within [prettier-plugin-sql-cst](https://github.com/nene/prettier-plugin-sql-cst). As long as that one keeps working (I'm OK...

Thanks for reporting. This is similar to #302 and #732. One one hand this is really a fundamental problem with SQL Formatter that can't be easily fixed. (I could remove...

An alternative is to use a different formatting library which doesn't have this issue: https://github.com/nene/prettier-plugin-sql-cst

This might be nice. Would you be interested in implementing and maintaining this? I'm personally pretty unlikely to do it, as my priority is to finish support for PostgreSQL, which...

Thanks for reporting. Useful info 👍

Interestingly I see that you use a type `localtime`. It doesn't look like Postgres has that data type built in. And even when I try to create a custom type...

As we implement this, we should make sure that we parse the schema name as identifier and the data type name as data type. Something like: ``` public.INT --> namespaced_data_type...