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 c74ddea commit ad0ea97Copy full SHA for ad0ea97
Sources/SQLite/Typed/Expression.swift
@@ -106,8 +106,8 @@ extension ExpressionType {
106
" ".join([self, Expression<Void>(literal: "DESC")])
107
}
108
109
- public func alias(name:String) -> Expressible {
110
- return " ".join([self, Expression<Void>(literal: "AS \(name)")])
+ public func alias(_ aliasName: String) -> Expressible {
+ return " ".join([self, Expression<Void>(literal: "AS \(aliasName)")])
111
112
113
0 commit comments