SQLite: Add @DatabaseCollation - #345
Merged
Merged
Conversation
stephencelis
force-pushed
the
custom-collations
branch
from
August 18, 2026 22:45
4233cc2 to
15e2a24
Compare
stephencelis
force-pushed
the
custom-collations
branch
from
August 19, 2026 00:04
15e2a24 to
d8bf007
Compare
stephencelis
force-pushed
the
custom-collations
branch
from
August 19, 2026 00:05
d8bf007 to
8dc1340
Compare
stephencelis
force-pushed
the
custom-collations
branch
from
August 19, 2026 00:05
8dc1340 to
c6d9542
Compare
stephencelis
marked this pull request as ready for review
August 19, 2026 00:20
stephencelis
force-pushed
the
custom-collations
branch
from
August 22, 2026 07:17
5d17c87 to
d0945bc
Compare
This macro is similar to `@DatabaseFunction` but can be used to define
custom collating sequences:
```swift
@DatabaseCollation
func unicode(_ lhs: String, _ rhs: String) -> CollationOrder {
CollationOrder(lhs, rhs)
}
db.install(collation: $unicode)
Reminder.order { $0.title.collate($unicode) }
```
stephencelis
force-pushed
the
custom-collations
branch
from
August 24, 2026 21:21
d0945bc to
d3ea14d
Compare
mbrandonw
approved these changes
Aug 31, 2026
stephencelis
disabled the stack merge
August 31, 2026 18:29
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This macro is similar to
@DatabaseFunctionbut can be used to define custom collating sequences: