Augusto Fotino

Results 83 comments of Augusto Fotino

Sorry for the dumb question but, is it really a good first issue? I mean, it seems that there are A LOT of things to be done.

Fair enough, thanks!

@alamb can this be closed? It is deprecated, as https://github.com/sqlparser-rs/sqlparser-rs/pull/451 resolves this.

@waitingkuo @andygrove `TIMESTAMPTZ` and `TIMESTAMP WITH TIME ZONE` aren't the same. Did a fix PR: https://github.com/sqlparser-rs/sqlparser-rs/pull/641

@bugoverdose I got the same problem with `OR`. It looks like our precedence evaluation isn't handling different levels well, or there's something wrong. @alamb I'll try to find a way...

@nickolay MySQL considers its precedence to be the third lowest one ([1](https://dev.mysql.com/doc/refman/8.0/en/operator-precedence.html)), which seems to be the same for MariaDB ([2](https://mariadb.com/kb/en/operator-precedence/)), and the same for Oracle ([3](https://docs.oracle.com/cd/E17952_01/mysql-5.6-en/operator-precedence.html)). To be honest...

@andygrove can https://jakewheat.github.io/sql-overview/sql-2016-foundation-grammar.html#character-string-type be used instead? I'm working on this, but the repository states that this one is our standard, so following the 2011 shouldn't be recommended.

@MRGRAVITY817 @rex-remind101 do you have any specific type to be supported? PostgreSQL and SQL Server seem not to follow the standard, so implementing each one of them would be a...

@teenjuna I see. The problem is, `CREATE TYPE ... AS (...)` follows the standard ([1](https://jakewheat.github.io/sql-overview/sql-2016-foundation-grammar.html#datetime-type)), but the latest not. I'm currently mostly working to try to expand our `ANSII` implementation,...

@Sibz looking at MySQL's `CREATE TABLE` doc ([1](https://dev.mysql.com/doc/refman/8.0/en/create-table.html)), I couldn't find why you're trying to give it an expression, as MySQL seems to follow the standard when it comes to...