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 b1b27d5 commit 5ac56d7Copy full SHA for 5ac56d7
SQLite/Query.swift
@@ -768,7 +768,7 @@ public struct Row {
768
}
769
public func get<V: Value>(column: Expression<V?>) -> V? {
770
func valueAtIndex(idx: Int) -> V? {
771
- if let value = self.values[idx] as? V.Datatype { return (V.fromDatatypeValue(value) as! V) }
+ if let value = values[idx] as? V.Datatype { return (V.fromDatatypeValue(value) as! V) }
772
return nil
773
774
0 commit comments