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

autocomplete order should be case insensitive #194

Open
eiked opened this issue Dec 8, 2012 · 0 comments
Open

autocomplete order should be case insensitive #194

eiked opened this issue Dec 8, 2012 · 0 comments

Comments

@eiked
Copy link

eiked commented Dec 8, 2012

autocomplete :artist, :name

currently generates sql (using postgres)

SELECT artist.id, artist.name FROM "artist" WHERE (LOWER(artist.name) ILIKE 'test%')
ORDER BY artist.name ASC LIMIT 10

while I believe it should be change to generate:

SELECT artist.id, artist.name FROM "artist" WHERE (LOWER(artist.name) ILIKE 'test%')
ORDER BY LOWER(artist.name) ASC LIMIT 10

aka the order of results should also be based on lowering

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

No branches or pull requests

1 participant