diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c5727296..70ba6966 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,6 +34,7 @@ jobs: strategy: matrix: swift: + - '6.0' - '6.1' runs-on: ubuntu-latest container: swift:${{ matrix.swift }} diff --git a/Sources/StructuredQueriesCore/Internal/Deprecations.swift b/Sources/StructuredQueriesCore/Internal/Deprecations.swift index 8dc54d96..6648ec88 100644 --- a/Sources/StructuredQueriesCore/Internal/Deprecations.swift +++ b/Sources/StructuredQueriesCore/Internal/Deprecations.swift @@ -53,7 +53,7 @@ extension Table { or conflictResolution: ConflictResolution? = nil, _ columns: (TableColumns) -> (TableColumn, repeat TableColumn), select selection: () -> Select<(C1, repeat each C2), From, Joins>, - onConflict updates: ((inout Updates) -> Void)?, + onConflict updates: ((inout Updates) -> Void)? ) -> InsertOf where C1.QueryValue == V1, (repeat (each C2).QueryValue) == (repeat each V2) { insert(or: conflictResolution, columns, select: selection, onConflictDoUpdate: updates)