Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support multi-column indexes on OpenFileGDB #10590

Open
apjoseph opened this issue Aug 12, 2024 · 1 comment
Open

Support multi-column indexes on OpenFileGDB #10590

apjoseph opened this issue Aug 12, 2024 · 1 comment

Comments

@apjoseph
Copy link
Contributor

Feature description

Currently creating multicolumn indexes with the OpenFIleGDB driver on SQLite or ORGSQL dialects is not supported -despite being supported by the format itself.

CREATE INDEX field1_field2_idx ON table (field1,field2) 

will fail with "field1,field2 does not exist". Given the error message, I am not sure if the issue lies with the sql parser or is a limitation of the OpenFileGDB driver itself -or both.

Additional context

No response

@rouault
Copy link
Member

rouault commented Aug 12, 2024

This is both, but the main limitation comes from the index creation capabilities of the OpenFileGDB driver itself. Unlikely to be implemented without funding (besides coding, it might require additional reverse engineering to figure out how this is implemented)
In the meantime I've queued #10591 to emit an explicit error.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants