dddenis opened a new pull request, #2131: URL: https://github.com/apache/datafusion-sqlparser-rs/pull/2131
This PR adds support for schema-qualified operator classes in PostgreSQL `CREATE INDEX` statements. Previously, the parser only accepted simple identifiers for operator classes (e.g., `vector_cosine_ops`). With this change, schema-qualified names are now supported (e.g., `public.vector_cosine_ops`). The following SQL is now correctly parsed: ```sql CREATE INDEX my_index ON my_table USING HNSW (embedding public.vector_cosine_ops); ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
