Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ jobs:
strategy:
matrix:
swift:
- '6.0'
- '6.1'
runs-on: ubuntu-latest
container: swift:${{ matrix.swift }}
Expand Down
2 changes: 1 addition & 1 deletion Sources/StructuredQueriesCore/Internal/Deprecations.swift
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ extension Table {
or conflictResolution: ConflictResolution? = nil,
_ columns: (TableColumns) -> (TableColumn<Self, V1>, repeat TableColumn<Self, each V2>),
select selection: () -> Select<(C1, repeat each C2), From, Joins>,
onConflict updates: ((inout Updates<Self>) -> Void)?,
onConflict updates: ((inout Updates<Self>) -> Void)?
) -> InsertOf<Self>
where C1.QueryValue == V1, (repeat (each C2).QueryValue) == (repeat each V2) {
insert(or: conflictResolution, columns, select: selection, onConflictDoUpdate: updates)
Expand Down