Ankur Goyal

Results 106 comments of Ankur Goyal

I think this may be failing because of the semicolon?

Good catch @devgony! You should be able to figure that out by tracing back `git blame` on [this file](https://github.com/sqlparser-rs/sqlparser-rs/blob/main/src/keywords.rs#L616)

@AmgadHasan I maintain https://github.com/braintrustdata/braintrust-proxy which allows you to access gemini models through the OpenAI format. We haven't yet translated the gemini tool call syntax over, but based on your code...

Hi there! Thanks so much for reporting. This looks like a bug. Check out the extra annotation in [`CREATE TABLE`](https://github.com/sqlparser-rs/sqlparser-rs/blob/main/src/ast/mod.rs#L1240): ``` /// Table name #[cfg_attr(feature = "visitor", visit(with = "visit_relation"))]...

Sounds like it may be a bug in the `trailing_commas` logic!

> I am not quite sure what this would look like -- could you share a draft PR or rust pseudo code? Absolutely, here is a quick patch which shows...

@alamb I've been working on this as part of a side project I'm building and wanted to put up a PR for your feedback: https://github.com/sqlparser-rs/sqlparser-rs/pull/790. There are a few other...

@max-sixty is my understanding correct that in #868 you're adding a "catch all" custom operator and intend to capture the (built-in) regex syntax in MySQL that way? If so, why...

Hi @c-thiel, thanks for posting. From what I can tell (using git blame), this syntax was introduced in https://github.com/sqlparser-rs/sqlparser-rs/pull/235/files for Hive. It looks like a shortcut syntax ([1](https://docs.cloudera.com/HDPDocuments/HDP3/HDP-3.0.1/using-hiveql/content/hive_create_a_table_using_a_cte.html), [2](https://cwiki.apache.org/confluence/display/Hive/Common+Table+Expression)) that...

@jakeswenson thanks for putting this up! Can you talk about how it's different than the approach in https://github.com/sqlparser-rs/sqlparser-rs/pull/790? The key problem we're trying to work through right now is how...