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 4bcd5a4 commit c6a7785Copy full SHA for c6a7785
Sources/StructuredQueriesCore/Statements/Select.swift
@@ -1533,11 +1533,9 @@ extension CopyOnWrite: Sendable where Value: Sendable {}
1533
1534
extension CopyOnWrite.Storage: @unchecked Sendable where Value: Sendable {}
1535
1536
-private struct ExistsSelect<T: Table, S: Statement>: SelectStatement {
1537
- typealias From = T
+private struct ExistsSelect<From: Table, S: Statement>: SelectStatement {
1538
typealias QueryValue = Bool
1539
let statement: S
1540
-
1541
var query: QueryFragment {
1542
"SELECT EXISTS\(statement)"
1543
}
0 commit comments