-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Sqlite Collation Support #446
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Sqlite Collation Support #446
Conversation
Adds a method create_collation to SqliteConnection. Adds a unit test confirming the collation works as expected.
Per the comments in #430, this adds the method directly on I had some trouble with the unit test, I'm not sure the why I coded it is best. |
@mehcode @abonander I think this is ready to be merged. The CI failures appear to come from existing code in the master branch. |
👍 Thanks for seeing this through |
Is it possible to create a collation for a Sqlite Pool? Or only a single connection? |
In the version we just released this week, you can configure collations on |
Perfect! Thanks so much! |
Adds a method create_collation to SqliteConnection.
Adds a unit test confirming the collation works as expected.