We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7c5cf9 commit ba9a175Copy full SHA for ba9a175
SQLite/Expression.swift
@@ -102,8 +102,7 @@ public struct Expression<T> {
102
103
internal init<V>(_ expression: Expression<V>) {
104
self.init(literal: expression.SQL, expression.bindings)
105
- ascending = expression.ascending
106
- original = expression.original
+ (ascending, original) = (expression.ascending, expression.original)
107
}
108
109
internal var ordered: Expression<()> {
0 commit comments