Signed-off-by: Stephen Celis <stephen@stephencelis.com>
This commit is contained in:
Stephen Celis 2015-04-30 09:37:37 -04:00
Родитель e19813d0a3
Коммит 38a585c470
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -732,6 +732,8 @@ private func wrapDistinct<V, U>(function: String, expression: Expression<V>) ->
// MARK: - Helper
public let rowid = Expression<Int64>("ROWID")
public typealias Star = (Expression<Binding>?, Expression<Binding>?) -> Expression<()>
public func * (Expression<Binding>?, Expression<Binding>?) -> Expression<()> {
@ -900,8 +902,6 @@ public postfix func -- <V: Value where V.Datatype == Int64>(column: Expression<V
// MARK: - Internal
internal let rowid = Expression<Int64>("ROWID")
internal func transcode(literal: Binding?) -> String {
if let literal = literal {
if let literal = literal as? Blob { return literal.description }