Build Information
Successful build of swift-sqlcipher, reference main (c58147
), with Swift 6.1 for Linux on 29 Apr 2025 19:19:18 UTC.
Swift 6 data race errors: 42
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.1-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures 2>&1
Build Log
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
177 | // "c" if the index was created by a CREATE INDEX statement,
178 | // "u" if the index was created by a UNIQUE constraint, or
/host/spi-builder-workspace/Sources/SQLiteDB/Typed/Expression.swift:59:15: note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
57 |
58 | /// An `Expression` represents a raw SQL fragment and any associated bindings.
59 | public struct SQLExpression<Datatype>: ExpressionType {
| `- note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
60 |
61 | public typealias UnderlyingType = Datatype
/host/spi-builder-workspace/Sources/SQLiteDB/Schema/SchemaReader.swift:180:16: warning: static property 'originColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
178 | // "u" if the index was created by a UNIQUE constraint, or
179 | // "pk" if the index was created by a PRIMARY KEY constraint.
180 | static let originColumn = SQLExpression<String>("origin")
| |- warning: static property 'originColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'originColumn' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
181 | // "1" if the index is a partial index and "0" if not.
182 | static let partialColumn = SQLExpression<Int64>("partial")
/host/spi-builder-workspace/Sources/SQLiteDB/Typed/Expression.swift:59:15: note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
57 |
58 | /// An `Expression` represents a raw SQL fragment and any associated bindings.
59 | public struct SQLExpression<Datatype>: ExpressionType {
| `- note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
60 |
61 | public typealias UnderlyingType = Datatype
/host/spi-builder-workspace/Sources/SQLiteDB/Schema/SchemaReader.swift:182:16: warning: static property 'partialColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<Int64>' may have shared mutable state; this is an error in the Swift 6 language mode
180 | static let originColumn = SQLExpression<String>("origin")
181 | // "1" if the index is a partial index and "0" if not.
182 | static let partialColumn = SQLExpression<Int64>("partial")
| |- warning: static property 'partialColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<Int64>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'partialColumn' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
183 | }
184 |
/host/spi-builder-workspace/Sources/SQLiteDB/Typed/Expression.swift:59:15: note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
57 |
58 | /// An `Expression` represents a raw SQL fragment and any associated bindings.
59 | public struct SQLExpression<Datatype>: ExpressionType {
| `- note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
60 |
61 | public typealias UnderlyingType = Datatype
/host/spi-builder-workspace/Sources/SQLiteDB/Schema/SchemaReader.swift:186:16: warning: static property 'idColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<Int64>' may have shared mutable state; this is an error in the Swift 6 language mode
184 |
185 | private enum ForeignKeyListTable {
186 | static let idColumn = SQLExpression<Int64>("id")
| |- warning: static property 'idColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<Int64>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'idColumn' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
187 | static let seqColumn = SQLExpression<Int64>("seq")
188 | static let tableColumn = SQLExpression<String>("table")
/host/spi-builder-workspace/Sources/SQLiteDB/Typed/Expression.swift:59:15: note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
57 |
58 | /// An `Expression` represents a raw SQL fragment and any associated bindings.
59 | public struct SQLExpression<Datatype>: ExpressionType {
| `- note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
60 |
61 | public typealias UnderlyingType = Datatype
/host/spi-builder-workspace/Sources/SQLiteDB/Schema/SchemaReader.swift:187:16: warning: static property 'seqColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<Int64>' may have shared mutable state; this is an error in the Swift 6 language mode
185 | private enum ForeignKeyListTable {
186 | static let idColumn = SQLExpression<Int64>("id")
187 | static let seqColumn = SQLExpression<Int64>("seq")
| |- warning: static property 'seqColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<Int64>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'seqColumn' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
188 | static let tableColumn = SQLExpression<String>("table")
189 | static let fromColumn = SQLExpression<String>("from")
/host/spi-builder-workspace/Sources/SQLiteDB/Typed/Expression.swift:59:15: note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
57 |
58 | /// An `Expression` represents a raw SQL fragment and any associated bindings.
59 | public struct SQLExpression<Datatype>: ExpressionType {
| `- note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
60 |
61 | public typealias UnderlyingType = Datatype
/host/spi-builder-workspace/Sources/SQLiteDB/Schema/SchemaReader.swift:188:16: warning: static property 'tableColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
186 | static let idColumn = SQLExpression<Int64>("id")
187 | static let seqColumn = SQLExpression<Int64>("seq")
188 | static let tableColumn = SQLExpression<String>("table")
| |- warning: static property 'tableColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'tableColumn' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
189 | static let fromColumn = SQLExpression<String>("from")
190 | static let toColumn = SQLExpression<String?>("to") // when null, use primary key
/host/spi-builder-workspace/Sources/SQLiteDB/Typed/Expression.swift:59:15: note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
57 |
58 | /// An `Expression` represents a raw SQL fragment and any associated bindings.
59 | public struct SQLExpression<Datatype>: ExpressionType {
| `- note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
60 |
61 | public typealias UnderlyingType = Datatype
/host/spi-builder-workspace/Sources/SQLiteDB/Schema/SchemaReader.swift:189:16: warning: static property 'fromColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
187 | static let seqColumn = SQLExpression<Int64>("seq")
188 | static let tableColumn = SQLExpression<String>("table")
189 | static let fromColumn = SQLExpression<String>("from")
| |- warning: static property 'fromColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'fromColumn' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
190 | static let toColumn = SQLExpression<String?>("to") // when null, use primary key
191 | static let onUpdateColumn = SQLExpression<String>("on_update")
/host/spi-builder-workspace/Sources/SQLiteDB/Typed/Expression.swift:59:15: note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
57 |
58 | /// An `Expression` represents a raw SQL fragment and any associated bindings.
59 | public struct SQLExpression<Datatype>: ExpressionType {
| `- note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
60 |
61 | public typealias UnderlyingType = Datatype
/host/spi-builder-workspace/Sources/SQLiteDB/Schema/SchemaReader.swift:190:16: warning: static property 'toColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<String?>' may have shared mutable state; this is an error in the Swift 6 language mode
188 | static let tableColumn = SQLExpression<String>("table")
189 | static let fromColumn = SQLExpression<String>("from")
190 | static let toColumn = SQLExpression<String?>("to") // when null, use primary key
| |- warning: static property 'toColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<String?>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'toColumn' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
191 | static let onUpdateColumn = SQLExpression<String>("on_update")
192 | static let onDeleteColumn = SQLExpression<String>("on_delete")
/host/spi-builder-workspace/Sources/SQLiteDB/Typed/Expression.swift:59:15: note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
57 |
58 | /// An `Expression` represents a raw SQL fragment and any associated bindings.
59 | public struct SQLExpression<Datatype>: ExpressionType {
| `- note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
60 |
61 | public typealias UnderlyingType = Datatype
/host/spi-builder-workspace/Sources/SQLiteDB/Schema/SchemaReader.swift:191:16: warning: static property 'onUpdateColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
189 | static let fromColumn = SQLExpression<String>("from")
190 | static let toColumn = SQLExpression<String?>("to") // when null, use primary key
191 | static let onUpdateColumn = SQLExpression<String>("on_update")
| |- warning: static property 'onUpdateColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'onUpdateColumn' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
192 | static let onDeleteColumn = SQLExpression<String>("on_delete")
193 | static let matchColumn = SQLExpression<String>("match")
/host/spi-builder-workspace/Sources/SQLiteDB/Typed/Expression.swift:59:15: note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
57 |
58 | /// An `Expression` represents a raw SQL fragment and any associated bindings.
59 | public struct SQLExpression<Datatype>: ExpressionType {
| `- note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
60 |
61 | public typealias UnderlyingType = Datatype
/host/spi-builder-workspace/Sources/SQLiteDB/Schema/SchemaReader.swift:192:16: warning: static property 'onDeleteColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
190 | static let toColumn = SQLExpression<String?>("to") // when null, use primary key
191 | static let onUpdateColumn = SQLExpression<String>("on_update")
192 | static let onDeleteColumn = SQLExpression<String>("on_delete")
| |- warning: static property 'onDeleteColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'onDeleteColumn' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
193 | static let matchColumn = SQLExpression<String>("match")
194 | }
/host/spi-builder-workspace/Sources/SQLiteDB/Typed/Expression.swift:59:15: note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
57 |
58 | /// An `Expression` represents a raw SQL fragment and any associated bindings.
59 | public struct SQLExpression<Datatype>: ExpressionType {
| `- note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
60 |
61 | public typealias UnderlyingType = Datatype
/host/spi-builder-workspace/Sources/SQLiteDB/Schema/SchemaReader.swift:193:16: warning: static property 'matchColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
191 | static let onUpdateColumn = SQLExpression<String>("on_update")
192 | static let onDeleteColumn = SQLExpression<String>("on_delete")
193 | static let matchColumn = SQLExpression<String>("match")
| |- warning: static property 'matchColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'matchColumn' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
194 | }
195 |
/host/spi-builder-workspace/Sources/SQLiteDB/Typed/Expression.swift:59:15: note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
57 |
58 | /// An `Expression` represents a raw SQL fragment and any associated bindings.
59 | public struct SQLExpression<Datatype>: ExpressionType {
| `- note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
60 |
61 | public typealias UnderlyingType = Datatype
[498/531] Compiling SQLiteDB SchemaReader.swift
/host/spi-builder-workspace/Sources/SQLiteDB/Schema/SchemaChanger.swift:32:14: warning: associated value 'foreignKeyError' of 'Sendable'-conforming enum 'Error' has non-sendable type 'ForeignKeyError'; this is an error in the Swift 6 language mode
30 | public enum Error: LocalizedError {
31 | case invalidColumnDefinition(String)
32 | case foreignKeyError([ForeignKeyError])
| `- warning: associated value 'foreignKeyError' of 'Sendable'-conforming enum 'Error' has non-sendable type 'ForeignKeyError'; this is an error in the Swift 6 language mode
33 |
34 | public var errorDescription: String? {
/host/spi-builder-workspace/Sources/SQLiteDB/Schema/SchemaDefinitions.swift:307:15: note: consider making struct 'ForeignKeyError' conform to the 'Sendable' protocol
305 | }
306 |
307 | public struct ForeignKeyError: CustomStringConvertible {
| `- note: consider making struct 'ForeignKeyError' conform to the 'Sendable' protocol
308 | public let from: String
309 | public let rowId: Int64
/host/spi-builder-workspace/Sources/SQLiteDB/Schema/SchemaReader.swift:129:24: warning: static property 'name' is not concurrency-safe because non-'Sendable' type 'Table' may have shared mutable state; this is an error in the Swift 6 language mode
127 |
128 | private enum SchemaTable {
129 | private static let name = Table("sqlite_schema", database: "main")
| |- warning: static property 'name' is not concurrency-safe because non-'Sendable' type 'Table' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'name' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
130 | private static let tempName = Table("sqlite_schema", database: "temp")
131 | // legacy names (< 3.33.0)
/host/spi-builder-workspace/Sources/SQLiteDB/Typed/Query.swift:880:15: note: consider making struct 'Table' conform to the 'Sendable' protocol
878 | /// Queries a collection of chainable helper functions and expressions to build
879 | /// executable SQL statements.
880 | public struct Table: SchemaType {
| `- note: consider making struct 'Table' conform to the 'Sendable' protocol
881 |
882 | public static let identifier = "TABLE"
/host/spi-builder-workspace/Sources/SQLiteDB/Schema/SchemaReader.swift:130:24: warning: static property 'tempName' is not concurrency-safe because non-'Sendable' type 'Table' may have shared mutable state; this is an error in the Swift 6 language mode
128 | private enum SchemaTable {
129 | private static let name = Table("sqlite_schema", database: "main")
130 | private static let tempName = Table("sqlite_schema", database: "temp")
| |- warning: static property 'tempName' is not concurrency-safe because non-'Sendable' type 'Table' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'tempName' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
131 | // legacy names (< 3.33.0)
132 | private static let masterName = Table("sqlite_master")
/host/spi-builder-workspace/Sources/SQLiteDB/Typed/Query.swift:880:15: note: consider making struct 'Table' conform to the 'Sendable' protocol
878 | /// Queries a collection of chainable helper functions and expressions to build
879 | /// executable SQL statements.
880 | public struct Table: SchemaType {
| `- note: consider making struct 'Table' conform to the 'Sendable' protocol
881 |
882 | public static let identifier = "TABLE"
/host/spi-builder-workspace/Sources/SQLiteDB/Schema/SchemaReader.swift:132:24: warning: static property 'masterName' is not concurrency-safe because non-'Sendable' type 'Table' may have shared mutable state; this is an error in the Swift 6 language mode
130 | private static let tempName = Table("sqlite_schema", database: "temp")
131 | // legacy names (< 3.33.0)
132 | private static let masterName = Table("sqlite_master")
| |- warning: static property 'masterName' is not concurrency-safe because non-'Sendable' type 'Table' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'masterName' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
133 | private static let tempMasterName = Table("sqlite_temp_master")
134 |
/host/spi-builder-workspace/Sources/SQLiteDB/Typed/Query.swift:880:15: note: consider making struct 'Table' conform to the 'Sendable' protocol
878 | /// Queries a collection of chainable helper functions and expressions to build
879 | /// executable SQL statements.
880 | public struct Table: SchemaType {
| `- note: consider making struct 'Table' conform to the 'Sendable' protocol
881 |
882 | public static let identifier = "TABLE"
/host/spi-builder-workspace/Sources/SQLiteDB/Schema/SchemaReader.swift:133:24: warning: static property 'tempMasterName' is not concurrency-safe because non-'Sendable' type 'Table' may have shared mutable state; this is an error in the Swift 6 language mode
131 | // legacy names (< 3.33.0)
132 | private static let masterName = Table("sqlite_master")
133 | private static let tempMasterName = Table("sqlite_temp_master")
| |- warning: static property 'tempMasterName' is not concurrency-safe because non-'Sendable' type 'Table' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'tempMasterName' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
134 |
135 | static func get(for connection: Connection, temp: Bool = false) -> Table {
/host/spi-builder-workspace/Sources/SQLiteDB/Typed/Query.swift:880:15: note: consider making struct 'Table' conform to the 'Sendable' protocol
878 | /// Queries a collection of chainable helper functions and expressions to build
879 | /// executable SQL statements.
880 | public struct Table: SchemaType {
| `- note: consider making struct 'Table' conform to the 'Sendable' protocol
881 |
882 | public static let identifier = "TABLE"
/host/spi-builder-workspace/Sources/SQLiteDB/Schema/SchemaReader.swift:144:16: warning: static property 'typeColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
142 |
143 | // columns
144 | static let typeColumn = SQLExpression<String>("type")
| |- warning: static property 'typeColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'typeColumn' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
145 | static let nameColumn = SQLExpression<String>("name")
146 | static let tableNameColumn = SQLExpression<String>("tbl_name")
/host/spi-builder-workspace/Sources/SQLiteDB/Typed/Expression.swift:59:15: note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
57 |
58 | /// An `Expression` represents a raw SQL fragment and any associated bindings.
59 | public struct SQLExpression<Datatype>: ExpressionType {
| `- note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
60 |
61 | public typealias UnderlyingType = Datatype
/host/spi-builder-workspace/Sources/SQLiteDB/Schema/SchemaReader.swift:145:16: warning: static property 'nameColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
143 | // columns
144 | static let typeColumn = SQLExpression<String>("type")
145 | static let nameColumn = SQLExpression<String>("name")
| |- warning: static property 'nameColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'nameColumn' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
146 | static let tableNameColumn = SQLExpression<String>("tbl_name")
147 | static let rootPageColumn = SQLExpression<Int64?>("rootpage")
/host/spi-builder-workspace/Sources/SQLiteDB/Typed/Expression.swift:59:15: note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
57 |
58 | /// An `Expression` represents a raw SQL fragment and any associated bindings.
59 | public struct SQLExpression<Datatype>: ExpressionType {
| `- note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
60 |
61 | public typealias UnderlyingType = Datatype
/host/spi-builder-workspace/Sources/SQLiteDB/Schema/SchemaReader.swift:146:16: warning: static property 'tableNameColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
144 | static let typeColumn = SQLExpression<String>("type")
145 | static let nameColumn = SQLExpression<String>("name")
146 | static let tableNameColumn = SQLExpression<String>("tbl_name")
| |- warning: static property 'tableNameColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'tableNameColumn' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
147 | static let rootPageColumn = SQLExpression<Int64?>("rootpage")
148 | static let sqlColumn = SQLExpression<String?>("sql")
/host/spi-builder-workspace/Sources/SQLiteDB/Typed/Expression.swift:59:15: note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
57 |
58 | /// An `Expression` represents a raw SQL fragment and any associated bindings.
59 | public struct SQLExpression<Datatype>: ExpressionType {
| `- note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
60 |
61 | public typealias UnderlyingType = Datatype
/host/spi-builder-workspace/Sources/SQLiteDB/Schema/SchemaReader.swift:147:16: warning: static property 'rootPageColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<Int64?>' may have shared mutable state; this is an error in the Swift 6 language mode
145 | static let nameColumn = SQLExpression<String>("name")
146 | static let tableNameColumn = SQLExpression<String>("tbl_name")
147 | static let rootPageColumn = SQLExpression<Int64?>("rootpage")
| |- warning: static property 'rootPageColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<Int64?>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'rootPageColumn' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
148 | static let sqlColumn = SQLExpression<String?>("sql")
149 | }
/host/spi-builder-workspace/Sources/SQLiteDB/Typed/Expression.swift:59:15: note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
57 |
58 | /// An `Expression` represents a raw SQL fragment and any associated bindings.
59 | public struct SQLExpression<Datatype>: ExpressionType {
| `- note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
60 |
61 | public typealias UnderlyingType = Datatype
/host/spi-builder-workspace/Sources/SQLiteDB/Schema/SchemaReader.swift:148:16: warning: static property 'sqlColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<String?>' may have shared mutable state; this is an error in the Swift 6 language mode
146 | static let tableNameColumn = SQLExpression<String>("tbl_name")
147 | static let rootPageColumn = SQLExpression<Int64?>("rootpage")
148 | static let sqlColumn = SQLExpression<String?>("sql")
| |- warning: static property 'sqlColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<String?>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'sqlColumn' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
149 | }
150 |
/host/spi-builder-workspace/Sources/SQLiteDB/Typed/Expression.swift:59:15: note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
57 |
58 | /// An `Expression` represents a raw SQL fragment and any associated bindings.
59 | public struct SQLExpression<Datatype>: ExpressionType {
| `- note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
60 |
61 | public typealias UnderlyingType = Datatype
/host/spi-builder-workspace/Sources/SQLiteDB/Schema/SchemaReader.swift:152:16: warning: static property 'idColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<Int64>' may have shared mutable state; this is an error in the Swift 6 language mode
150 |
151 | private enum TableInfoTable {
152 | static let idColumn = SQLExpression<Int64>("cid")
| |- warning: static property 'idColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<Int64>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'idColumn' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
153 | static let nameColumn = SQLExpression<String>("name")
154 | static let typeColumn = SQLExpression<String>("type")
/host/spi-builder-workspace/Sources/SQLiteDB/Typed/Expression.swift:59:15: note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
57 |
58 | /// An `Expression` represents a raw SQL fragment and any associated bindings.
59 | public struct SQLExpression<Datatype>: ExpressionType {
| `- note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
60 |
61 | public typealias UnderlyingType = Datatype
/host/spi-builder-workspace/Sources/SQLiteDB/Schema/SchemaReader.swift:153:16: warning: static property 'nameColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
151 | private enum TableInfoTable {
152 | static let idColumn = SQLExpression<Int64>("cid")
153 | static let nameColumn = SQLExpression<String>("name")
| |- warning: static property 'nameColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'nameColumn' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
154 | static let typeColumn = SQLExpression<String>("type")
155 | static let notNullColumn = SQLExpression<Int64>("notnull")
/host/spi-builder-workspace/Sources/SQLiteDB/Typed/Expression.swift:59:15: note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
57 |
58 | /// An `Expression` represents a raw SQL fragment and any associated bindings.
59 | public struct SQLExpression<Datatype>: ExpressionType {
| `- note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
60 |
61 | public typealias UnderlyingType = Datatype
/host/spi-builder-workspace/Sources/SQLiteDB/Schema/SchemaReader.swift:154:16: warning: static property 'typeColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
152 | static let idColumn = SQLExpression<Int64>("cid")
153 | static let nameColumn = SQLExpression<String>("name")
154 | static let typeColumn = SQLExpression<String>("type")
| |- warning: static property 'typeColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'typeColumn' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
155 | static let notNullColumn = SQLExpression<Int64>("notnull")
156 | static let defaultValueColumn = SQLExpression<String?>("dflt_value")
/host/spi-builder-workspace/Sources/SQLiteDB/Typed/Expression.swift:59:15: note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
57 |
58 | /// An `Expression` represents a raw SQL fragment and any associated bindings.
59 | public struct SQLExpression<Datatype>: ExpressionType {
| `- note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
60 |
61 | public typealias UnderlyingType = Datatype
/host/spi-builder-workspace/Sources/SQLiteDB/Schema/SchemaReader.swift:155:16: warning: static property 'notNullColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<Int64>' may have shared mutable state; this is an error in the Swift 6 language mode
153 | static let nameColumn = SQLExpression<String>("name")
154 | static let typeColumn = SQLExpression<String>("type")
155 | static let notNullColumn = SQLExpression<Int64>("notnull")
| |- warning: static property 'notNullColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<Int64>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'notNullColumn' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
156 | static let defaultValueColumn = SQLExpression<String?>("dflt_value")
157 | static let primaryKeyColumn = SQLExpression<Int64?>("pk")
/host/spi-builder-workspace/Sources/SQLiteDB/Typed/Expression.swift:59:15: note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
57 |
58 | /// An `Expression` represents a raw SQL fragment and any associated bindings.
59 | public struct SQLExpression<Datatype>: ExpressionType {
| `- note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
60 |
61 | public typealias UnderlyingType = Datatype
/host/spi-builder-workspace/Sources/SQLiteDB/Schema/SchemaReader.swift:156:16: warning: static property 'defaultValueColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<String?>' may have shared mutable state; this is an error in the Swift 6 language mode
154 | static let typeColumn = SQLExpression<String>("type")
155 | static let notNullColumn = SQLExpression<Int64>("notnull")
156 | static let defaultValueColumn = SQLExpression<String?>("dflt_value")
| |- warning: static property 'defaultValueColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<String?>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultValueColumn' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
157 | static let primaryKeyColumn = SQLExpression<Int64?>("pk")
158 | }
/host/spi-builder-workspace/Sources/SQLiteDB/Typed/Expression.swift:59:15: note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
57 |
58 | /// An `Expression` represents a raw SQL fragment and any associated bindings.
59 | public struct SQLExpression<Datatype>: ExpressionType {
| `- note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
60 |
61 | public typealias UnderlyingType = Datatype
/host/spi-builder-workspace/Sources/SQLiteDB/Schema/SchemaReader.swift:157:16: warning: static property 'primaryKeyColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<Int64?>' may have shared mutable state; this is an error in the Swift 6 language mode
155 | static let notNullColumn = SQLExpression<Int64>("notnull")
156 | static let defaultValueColumn = SQLExpression<String?>("dflt_value")
157 | static let primaryKeyColumn = SQLExpression<Int64?>("pk")
| |- warning: static property 'primaryKeyColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<Int64?>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'primaryKeyColumn' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
158 | }
159 |
/host/spi-builder-workspace/Sources/SQLiteDB/Typed/Expression.swift:59:15: note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
57 |
58 | /// An `Expression` represents a raw SQL fragment and any associated bindings.
59 | public struct SQLExpression<Datatype>: ExpressionType {
| `- note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
60 |
61 | public typealias UnderlyingType = Datatype
/host/spi-builder-workspace/Sources/SQLiteDB/Schema/SchemaReader.swift:162:16: warning: static property 'seqnoColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<Int64>' may have shared mutable state; this is an error in the Swift 6 language mode
160 | private enum IndexInfoTable {
161 | // The rank of the column within the index. (0 means left-most.)
162 | static let seqnoColumn = SQLExpression<Int64>("seqno")
| |- warning: static property 'seqnoColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<Int64>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'seqnoColumn' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
163 | // The rank of the column within the table being indexed.
164 | // A value of -1 means rowid and a value of -2 means that an expression is being used.
/host/spi-builder-workspace/Sources/SQLiteDB/Typed/Expression.swift:59:15: note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
57 |
58 | /// An `Expression` represents a raw SQL fragment and any associated bindings.
59 | public struct SQLExpression<Datatype>: ExpressionType {
| `- note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
60 |
61 | public typealias UnderlyingType = Datatype
/host/spi-builder-workspace/Sources/SQLiteDB/Schema/SchemaReader.swift:165:16: warning: static property 'cidColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<Int64>' may have shared mutable state; this is an error in the Swift 6 language mode
163 | // The rank of the column within the table being indexed.
164 | // A value of -1 means rowid and a value of -2 means that an expression is being used.
165 | static let cidColumn = SQLExpression<Int64>("cid")
| |- warning: static property 'cidColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<Int64>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'cidColumn' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
166 | // The name of the column being indexed. This columns is NULL if the column is the rowid or an expression.
167 | static let nameColumn = SQLExpression<String?>("name")
/host/spi-builder-workspace/Sources/SQLiteDB/Typed/Expression.swift:59:15: note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
57 |
58 | /// An `Expression` represents a raw SQL fragment and any associated bindings.
59 | public struct SQLExpression<Datatype>: ExpressionType {
| `- note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
60 |
61 | public typealias UnderlyingType = Datatype
/host/spi-builder-workspace/Sources/SQLiteDB/Schema/SchemaReader.swift:167:16: warning: static property 'nameColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<String?>' may have shared mutable state; this is an error in the Swift 6 language mode
165 | static let cidColumn = SQLExpression<Int64>("cid")
166 | // The name of the column being indexed. This columns is NULL if the column is the rowid or an expression.
167 | static let nameColumn = SQLExpression<String?>("name")
| |- warning: static property 'nameColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<String?>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'nameColumn' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
168 | }
169 |
/host/spi-builder-workspace/Sources/SQLiteDB/Typed/Expression.swift:59:15: note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
57 |
58 | /// An `Expression` represents a raw SQL fragment and any associated bindings.
59 | public struct SQLExpression<Datatype>: ExpressionType {
| `- note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
60 |
61 | public typealias UnderlyingType = Datatype
/host/spi-builder-workspace/Sources/SQLiteDB/Schema/SchemaReader.swift:172:16: warning: static property 'seqColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<Int64>' may have shared mutable state; this is an error in the Swift 6 language mode
170 | private enum IndexListTable {
171 | // A sequence number assigned to each index for internal tracking purposes.
172 | static let seqColumn = SQLExpression<Int64>("seq")
| |- warning: static property 'seqColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<Int64>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'seqColumn' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
173 | // The name of the index
174 | static let nameColumn = SQLExpression<String>("name")
/host/spi-builder-workspace/Sources/SQLiteDB/Typed/Expression.swift:59:15: note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
57 |
58 | /// An `Expression` represents a raw SQL fragment and any associated bindings.
59 | public struct SQLExpression<Datatype>: ExpressionType {
| `- note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
60 |
61 | public typealias UnderlyingType = Datatype
/host/spi-builder-workspace/Sources/SQLiteDB/Schema/SchemaReader.swift:174:16: warning: static property 'nameColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
172 | static let seqColumn = SQLExpression<Int64>("seq")
173 | // The name of the index
174 | static let nameColumn = SQLExpression<String>("name")
| |- warning: static property 'nameColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'nameColumn' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
175 | // "1" if the index is UNIQUE and "0" if not.
176 | static let uniqueColumn = SQLExpression<Int64>("unique")
/host/spi-builder-workspace/Sources/SQLiteDB/Typed/Expression.swift:59:15: note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
57 |
58 | /// An `Expression` represents a raw SQL fragment and any associated bindings.
59 | public struct SQLExpression<Datatype>: ExpressionType {
| `- note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
60 |
61 | public typealias UnderlyingType = Datatype
/host/spi-builder-workspace/Sources/SQLiteDB/Schema/SchemaReader.swift:176:16: warning: static property 'uniqueColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<Int64>' may have shared mutable state; this is an error in the Swift 6 language mode
174 | static let nameColumn = SQLExpression<String>("name")
175 | // "1" if the index is UNIQUE and "0" if not.
176 | static let uniqueColumn = SQLExpression<Int64>("unique")
| |- warning: static property 'uniqueColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<Int64>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'uniqueColumn' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
177 | // "c" if the index was created by a CREATE INDEX statement,
178 | // "u" if the index was created by a UNIQUE constraint, or
/host/spi-builder-workspace/Sources/SQLiteDB/Typed/Expression.swift:59:15: note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
57 |
58 | /// An `Expression` represents a raw SQL fragment and any associated bindings.
59 | public struct SQLExpression<Datatype>: ExpressionType {
| `- note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
60 |
61 | public typealias UnderlyingType = Datatype
/host/spi-builder-workspace/Sources/SQLiteDB/Schema/SchemaReader.swift:180:16: warning: static property 'originColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
178 | // "u" if the index was created by a UNIQUE constraint, or
179 | // "pk" if the index was created by a PRIMARY KEY constraint.
180 | static let originColumn = SQLExpression<String>("origin")
| |- warning: static property 'originColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'originColumn' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
181 | // "1" if the index is a partial index and "0" if not.
182 | static let partialColumn = SQLExpression<Int64>("partial")
/host/spi-builder-workspace/Sources/SQLiteDB/Typed/Expression.swift:59:15: note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
57 |
58 | /// An `Expression` represents a raw SQL fragment and any associated bindings.
59 | public struct SQLExpression<Datatype>: ExpressionType {
| `- note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
60 |
61 | public typealias UnderlyingType = Datatype
/host/spi-builder-workspace/Sources/SQLiteDB/Schema/SchemaReader.swift:182:16: warning: static property 'partialColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<Int64>' may have shared mutable state; this is an error in the Swift 6 language mode
180 | static let originColumn = SQLExpression<String>("origin")
181 | // "1" if the index is a partial index and "0" if not.
182 | static let partialColumn = SQLExpression<Int64>("partial")
| |- warning: static property 'partialColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<Int64>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'partialColumn' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
183 | }
184 |
/host/spi-builder-workspace/Sources/SQLiteDB/Typed/Expression.swift:59:15: note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
57 |
58 | /// An `Expression` represents a raw SQL fragment and any associated bindings.
59 | public struct SQLExpression<Datatype>: ExpressionType {
| `- note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
60 |
61 | public typealias UnderlyingType = Datatype
/host/spi-builder-workspace/Sources/SQLiteDB/Schema/SchemaReader.swift:186:16: warning: static property 'idColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<Int64>' may have shared mutable state; this is an error in the Swift 6 language mode
184 |
185 | private enum ForeignKeyListTable {
186 | static let idColumn = SQLExpression<Int64>("id")
| |- warning: static property 'idColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<Int64>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'idColumn' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
187 | static let seqColumn = SQLExpression<Int64>("seq")
188 | static let tableColumn = SQLExpression<String>("table")
/host/spi-builder-workspace/Sources/SQLiteDB/Typed/Expression.swift:59:15: note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
57 |
58 | /// An `Expression` represents a raw SQL fragment and any associated bindings.
59 | public struct SQLExpression<Datatype>: ExpressionType {
| `- note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
60 |
61 | public typealias UnderlyingType = Datatype
/host/spi-builder-workspace/Sources/SQLiteDB/Schema/SchemaReader.swift:187:16: warning: static property 'seqColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<Int64>' may have shared mutable state; this is an error in the Swift 6 language mode
185 | private enum ForeignKeyListTable {
186 | static let idColumn = SQLExpression<Int64>("id")
187 | static let seqColumn = SQLExpression<Int64>("seq")
| |- warning: static property 'seqColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<Int64>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'seqColumn' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
188 | static let tableColumn = SQLExpression<String>("table")
189 | static let fromColumn = SQLExpression<String>("from")
/host/spi-builder-workspace/Sources/SQLiteDB/Typed/Expression.swift:59:15: note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
57 |
58 | /// An `Expression` represents a raw SQL fragment and any associated bindings.
59 | public struct SQLExpression<Datatype>: ExpressionType {
| `- note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
60 |
61 | public typealias UnderlyingType = Datatype
/host/spi-builder-workspace/Sources/SQLiteDB/Schema/SchemaReader.swift:188:16: warning: static property 'tableColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
186 | static let idColumn = SQLExpression<Int64>("id")
187 | static let seqColumn = SQLExpression<Int64>("seq")
188 | static let tableColumn = SQLExpression<String>("table")
| |- warning: static property 'tableColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'tableColumn' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
189 | static let fromColumn = SQLExpression<String>("from")
190 | static let toColumn = SQLExpression<String?>("to") // when null, use primary key
/host/spi-builder-workspace/Sources/SQLiteDB/Typed/Expression.swift:59:15: note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
57 |
58 | /// An `Expression` represents a raw SQL fragment and any associated bindings.
59 | public struct SQLExpression<Datatype>: ExpressionType {
| `- note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
60 |
61 | public typealias UnderlyingType = Datatype
/host/spi-builder-workspace/Sources/SQLiteDB/Schema/SchemaReader.swift:189:16: warning: static property 'fromColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
187 | static let seqColumn = SQLExpression<Int64>("seq")
188 | static let tableColumn = SQLExpression<String>("table")
189 | static let fromColumn = SQLExpression<String>("from")
| |- warning: static property 'fromColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'fromColumn' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
190 | static let toColumn = SQLExpression<String?>("to") // when null, use primary key
191 | static let onUpdateColumn = SQLExpression<String>("on_update")
/host/spi-builder-workspace/Sources/SQLiteDB/Typed/Expression.swift:59:15: note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
57 |
58 | /// An `Expression` represents a raw SQL fragment and any associated bindings.
59 | public struct SQLExpression<Datatype>: ExpressionType {
| `- note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
60 |
61 | public typealias UnderlyingType = Datatype
/host/spi-builder-workspace/Sources/SQLiteDB/Schema/SchemaReader.swift:190:16: warning: static property 'toColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<String?>' may have shared mutable state; this is an error in the Swift 6 language mode
188 | static let tableColumn = SQLExpression<String>("table")
189 | static let fromColumn = SQLExpression<String>("from")
190 | static let toColumn = SQLExpression<String?>("to") // when null, use primary key
| |- warning: static property 'toColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<String?>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'toColumn' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
191 | static let onUpdateColumn = SQLExpression<String>("on_update")
192 | static let onDeleteColumn = SQLExpression<String>("on_delete")
/host/spi-builder-workspace/Sources/SQLiteDB/Typed/Expression.swift:59:15: note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
57 |
58 | /// An `Expression` represents a raw SQL fragment and any associated bindings.
59 | public struct SQLExpression<Datatype>: ExpressionType {
| `- note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
60 |
61 | public typealias UnderlyingType = Datatype
/host/spi-builder-workspace/Sources/SQLiteDB/Schema/SchemaReader.swift:191:16: warning: static property 'onUpdateColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
189 | static let fromColumn = SQLExpression<String>("from")
190 | static let toColumn = SQLExpression<String?>("to") // when null, use primary key
191 | static let onUpdateColumn = SQLExpression<String>("on_update")
| |- warning: static property 'onUpdateColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'onUpdateColumn' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
192 | static let onDeleteColumn = SQLExpression<String>("on_delete")
193 | static let matchColumn = SQLExpression<String>("match")
/host/spi-builder-workspace/Sources/SQLiteDB/Typed/Expression.swift:59:15: note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
57 |
58 | /// An `Expression` represents a raw SQL fragment and any associated bindings.
59 | public struct SQLExpression<Datatype>: ExpressionType {
| `- note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
60 |
61 | public typealias UnderlyingType = Datatype
/host/spi-builder-workspace/Sources/SQLiteDB/Schema/SchemaReader.swift:192:16: warning: static property 'onDeleteColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
190 | static let toColumn = SQLExpression<String?>("to") // when null, use primary key
191 | static let onUpdateColumn = SQLExpression<String>("on_update")
192 | static let onDeleteColumn = SQLExpression<String>("on_delete")
| |- warning: static property 'onDeleteColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'onDeleteColumn' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
193 | static let matchColumn = SQLExpression<String>("match")
194 | }
/host/spi-builder-workspace/Sources/SQLiteDB/Typed/Expression.swift:59:15: note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
57 |
58 | /// An `Expression` represents a raw SQL fragment and any associated bindings.
59 | public struct SQLExpression<Datatype>: ExpressionType {
| `- note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
60 |
61 | public typealias UnderlyingType = Datatype
/host/spi-builder-workspace/Sources/SQLiteDB/Schema/SchemaReader.swift:193:16: warning: static property 'matchColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
191 | static let onUpdateColumn = SQLExpression<String>("on_update")
192 | static let onDeleteColumn = SQLExpression<String>("on_delete")
193 | static let matchColumn = SQLExpression<String>("match")
| |- warning: static property 'matchColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'matchColumn' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
194 | }
195 |
/host/spi-builder-workspace/Sources/SQLiteDB/Typed/Expression.swift:59:15: note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
57 |
58 | /// An `Expression` represents a raw SQL fragment and any associated bindings.
59 | public struct SQLExpression<Datatype>: ExpressionType {
| `- note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
60 |
61 | public typealias UnderlyingType = Datatype
[499/531] Compiling SQLiteDB AggregateFunctions.swift
/host/spi-builder-workspace/Sources/SQLiteDB/Schema/SchemaChanger.swift:32:14: warning: associated value 'foreignKeyError' of 'Sendable'-conforming enum 'Error' has non-sendable type 'ForeignKeyError'; this is an error in the Swift 6 language mode
30 | public enum Error: LocalizedError {
31 | case invalidColumnDefinition(String)
32 | case foreignKeyError([ForeignKeyError])
| `- warning: associated value 'foreignKeyError' of 'Sendable'-conforming enum 'Error' has non-sendable type 'ForeignKeyError'; this is an error in the Swift 6 language mode
33 |
34 | public var errorDescription: String? {
/host/spi-builder-workspace/Sources/SQLiteDB/Schema/SchemaDefinitions.swift:307:15: note: consider making struct 'ForeignKeyError' conform to the 'Sendable' protocol
305 | }
306 |
307 | public struct ForeignKeyError: CustomStringConvertible {
| `- note: consider making struct 'ForeignKeyError' conform to the 'Sendable' protocol
308 | public let from: String
309 | public let rowId: Int64
/host/spi-builder-workspace/Sources/SQLiteDB/Schema/SchemaReader.swift:129:24: warning: static property 'name' is not concurrency-safe because non-'Sendable' type 'Table' may have shared mutable state; this is an error in the Swift 6 language mode
127 |
128 | private enum SchemaTable {
129 | private static let name = Table("sqlite_schema", database: "main")
| |- warning: static property 'name' is not concurrency-safe because non-'Sendable' type 'Table' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'name' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
130 | private static let tempName = Table("sqlite_schema", database: "temp")
131 | // legacy names (< 3.33.0)
/host/spi-builder-workspace/Sources/SQLiteDB/Typed/Query.swift:880:15: note: consider making struct 'Table' conform to the 'Sendable' protocol
878 | /// Queries a collection of chainable helper functions and expressions to build
879 | /// executable SQL statements.
880 | public struct Table: SchemaType {
| `- note: consider making struct 'Table' conform to the 'Sendable' protocol
881 |
882 | public static let identifier = "TABLE"
/host/spi-builder-workspace/Sources/SQLiteDB/Schema/SchemaReader.swift:130:24: warning: static property 'tempName' is not concurrency-safe because non-'Sendable' type 'Table' may have shared mutable state; this is an error in the Swift 6 language mode
128 | private enum SchemaTable {
129 | private static let name = Table("sqlite_schema", database: "main")
130 | private static let tempName = Table("sqlite_schema", database: "temp")
| |- warning: static property 'tempName' is not concurrency-safe because non-'Sendable' type 'Table' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'tempName' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
131 | // legacy names (< 3.33.0)
132 | private static let masterName = Table("sqlite_master")
/host/spi-builder-workspace/Sources/SQLiteDB/Typed/Query.swift:880:15: note: consider making struct 'Table' conform to the 'Sendable' protocol
878 | /// Queries a collection of chainable helper functions and expressions to build
879 | /// executable SQL statements.
880 | public struct Table: SchemaType {
| `- note: consider making struct 'Table' conform to the 'Sendable' protocol
881 |
882 | public static let identifier = "TABLE"
/host/spi-builder-workspace/Sources/SQLiteDB/Schema/SchemaReader.swift:132:24: warning: static property 'masterName' is not concurrency-safe because non-'Sendable' type 'Table' may have shared mutable state; this is an error in the Swift 6 language mode
130 | private static let tempName = Table("sqlite_schema", database: "temp")
131 | // legacy names (< 3.33.0)
132 | private static let masterName = Table("sqlite_master")
| |- warning: static property 'masterName' is not concurrency-safe because non-'Sendable' type 'Table' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'masterName' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
133 | private static let tempMasterName = Table("sqlite_temp_master")
134 |
/host/spi-builder-workspace/Sources/SQLiteDB/Typed/Query.swift:880:15: note: consider making struct 'Table' conform to the 'Sendable' protocol
878 | /// Queries a collection of chainable helper functions and expressions to build
879 | /// executable SQL statements.
880 | public struct Table: SchemaType {
| `- note: consider making struct 'Table' conform to the 'Sendable' protocol
881 |
882 | public static let identifier = "TABLE"
/host/spi-builder-workspace/Sources/SQLiteDB/Schema/SchemaReader.swift:133:24: warning: static property 'tempMasterName' is not concurrency-safe because non-'Sendable' type 'Table' may have shared mutable state; this is an error in the Swift 6 language mode
131 | // legacy names (< 3.33.0)
132 | private static let masterName = Table("sqlite_master")
133 | private static let tempMasterName = Table("sqlite_temp_master")
| |- warning: static property 'tempMasterName' is not concurrency-safe because non-'Sendable' type 'Table' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'tempMasterName' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
134 |
135 | static func get(for connection: Connection, temp: Bool = false) -> Table {
/host/spi-builder-workspace/Sources/SQLiteDB/Typed/Query.swift:880:15: note: consider making struct 'Table' conform to the 'Sendable' protocol
878 | /// Queries a collection of chainable helper functions and expressions to build
879 | /// executable SQL statements.
880 | public struct Table: SchemaType {
| `- note: consider making struct 'Table' conform to the 'Sendable' protocol
881 |
882 | public static let identifier = "TABLE"
/host/spi-builder-workspace/Sources/SQLiteDB/Schema/SchemaReader.swift:144:16: warning: static property 'typeColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
142 |
143 | // columns
144 | static let typeColumn = SQLExpression<String>("type")
| |- warning: static property 'typeColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'typeColumn' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
145 | static let nameColumn = SQLExpression<String>("name")
146 | static let tableNameColumn = SQLExpression<String>("tbl_name")
/host/spi-builder-workspace/Sources/SQLiteDB/Typed/Expression.swift:59:15: note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
57 |
58 | /// An `Expression` represents a raw SQL fragment and any associated bindings.
59 | public struct SQLExpression<Datatype>: ExpressionType {
| `- note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
60 |
61 | public typealias UnderlyingType = Datatype
/host/spi-builder-workspace/Sources/SQLiteDB/Schema/SchemaReader.swift:145:16: warning: static property 'nameColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
143 | // columns
144 | static let typeColumn = SQLExpression<String>("type")
145 | static let nameColumn = SQLExpression<String>("name")
| |- warning: static property 'nameColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'nameColumn' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
146 | static let tableNameColumn = SQLExpression<String>("tbl_name")
147 | static let rootPageColumn = SQLExpression<Int64?>("rootpage")
/host/spi-builder-workspace/Sources/SQLiteDB/Typed/Expression.swift:59:15: note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
57 |
58 | /// An `Expression` represents a raw SQL fragment and any associated bindings.
59 | public struct SQLExpression<Datatype>: ExpressionType {
| `- note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
60 |
61 | public typealias UnderlyingType = Datatype
/host/spi-builder-workspace/Sources/SQLiteDB/Schema/SchemaReader.swift:146:16: warning: static property 'tableNameColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
144 | static let typeColumn = SQLExpression<String>("type")
145 | static let nameColumn = SQLExpression<String>("name")
146 | static let tableNameColumn = SQLExpression<String>("tbl_name")
| |- warning: static property 'tableNameColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'tableNameColumn' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
147 | static let rootPageColumn = SQLExpression<Int64?>("rootpage")
148 | static let sqlColumn = SQLExpression<String?>("sql")
/host/spi-builder-workspace/Sources/SQLiteDB/Typed/Expression.swift:59:15: note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
57 |
58 | /// An `Expression` represents a raw SQL fragment and any associated bindings.
59 | public struct SQLExpression<Datatype>: ExpressionType {
| `- note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
60 |
61 | public typealias UnderlyingType = Datatype
/host/spi-builder-workspace/Sources/SQLiteDB/Schema/SchemaReader.swift:147:16: warning: static property 'rootPageColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<Int64?>' may have shared mutable state; this is an error in the Swift 6 language mode
145 | static let nameColumn = SQLExpression<String>("name")
146 | static let tableNameColumn = SQLExpression<String>("tbl_name")
147 | static let rootPageColumn = SQLExpression<Int64?>("rootpage")
| |- warning: static property 'rootPageColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<Int64?>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'rootPageColumn' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
148 | static let sqlColumn = SQLExpression<String?>("sql")
149 | }
/host/spi-builder-workspace/Sources/SQLiteDB/Typed/Expression.swift:59:15: note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
57 |
58 | /// An `Expression` represents a raw SQL fragment and any associated bindings.
59 | public struct SQLExpression<Datatype>: ExpressionType {
| `- note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
60 |
61 | public typealias UnderlyingType = Datatype
/host/spi-builder-workspace/Sources/SQLiteDB/Schema/SchemaReader.swift:148:16: warning: static property 'sqlColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<String?>' may have shared mutable state; this is an error in the Swift 6 language mode
146 | static let tableNameColumn = SQLExpression<String>("tbl_name")
147 | static let rootPageColumn = SQLExpression<Int64?>("rootpage")
148 | static let sqlColumn = SQLExpression<String?>("sql")
| |- warning: static property 'sqlColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<String?>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'sqlColumn' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
149 | }
150 |
/host/spi-builder-workspace/Sources/SQLiteDB/Typed/Expression.swift:59:15: note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
57 |
58 | /// An `Expression` represents a raw SQL fragment and any associated bindings.
59 | public struct SQLExpression<Datatype>: ExpressionType {
| `- note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
60 |
61 | public typealias UnderlyingType = Datatype
/host/spi-builder-workspace/Sources/SQLiteDB/Schema/SchemaReader.swift:152:16: warning: static property 'idColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<Int64>' may have shared mutable state; this is an error in the Swift 6 language mode
150 |
151 | private enum TableInfoTable {
152 | static let idColumn = SQLExpression<Int64>("cid")
| |- warning: static property 'idColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<Int64>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'idColumn' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
153 | static let nameColumn = SQLExpression<String>("name")
154 | static let typeColumn = SQLExpression<String>("type")
/host/spi-builder-workspace/Sources/SQLiteDB/Typed/Expression.swift:59:15: note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
57 |
58 | /// An `Expression` represents a raw SQL fragment and any associated bindings.
59 | public struct SQLExpression<Datatype>: ExpressionType {
| `- note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
60 |
61 | public typealias UnderlyingType = Datatype
/host/spi-builder-workspace/Sources/SQLiteDB/Schema/SchemaReader.swift:153:16: warning: static property 'nameColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
151 | private enum TableInfoTable {
152 | static let idColumn = SQLExpression<Int64>("cid")
153 | static let nameColumn = SQLExpression<String>("name")
| |- warning: static property 'nameColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'nameColumn' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
154 | static let typeColumn = SQLExpression<String>("type")
155 | static let notNullColumn = SQLExpression<Int64>("notnull")
/host/spi-builder-workspace/Sources/SQLiteDB/Typed/Expression.swift:59:15: note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
57 |
58 | /// An `Expression` represents a raw SQL fragment and any associated bindings.
59 | public struct SQLExpression<Datatype>: ExpressionType {
| `- note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
60 |
61 | public typealias UnderlyingType = Datatype
/host/spi-builder-workspace/Sources/SQLiteDB/Schema/SchemaReader.swift:154:16: warning: static property 'typeColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
152 | static let idColumn = SQLExpression<Int64>("cid")
153 | static let nameColumn = SQLExpression<String>("name")
154 | static let typeColumn = SQLExpression<String>("type")
| |- warning: static property 'typeColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'typeColumn' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
155 | static let notNullColumn = SQLExpression<Int64>("notnull")
156 | static let defaultValueColumn = SQLExpression<String?>("dflt_value")
/host/spi-builder-workspace/Sources/SQLiteDB/Typed/Expression.swift:59:15: note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
57 |
58 | /// An `Expression` represents a raw SQL fragment and any associated bindings.
59 | public struct SQLExpression<Datatype>: ExpressionType {
| `- note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
60 |
61 | public typealias UnderlyingType = Datatype
/host/spi-builder-workspace/Sources/SQLiteDB/Schema/SchemaReader.swift:155:16: warning: static property 'notNullColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<Int64>' may have shared mutable state; this is an error in the Swift 6 language mode
153 | static let nameColumn = SQLExpression<String>("name")
154 | static let typeColumn = SQLExpression<String>("type")
155 | static let notNullColumn = SQLExpression<Int64>("notnull")
| |- warning: static property 'notNullColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<Int64>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'notNullColumn' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
156 | static let defaultValueColumn = SQLExpression<String?>("dflt_value")
157 | static let primaryKeyColumn = SQLExpression<Int64?>("pk")
/host/spi-builder-workspace/Sources/SQLiteDB/Typed/Expression.swift:59:15: note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
57 |
58 | /// An `Expression` represents a raw SQL fragment and any associated bindings.
59 | public struct SQLExpression<Datatype>: ExpressionType {
| `- note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
60 |
61 | public typealias UnderlyingType = Datatype
/host/spi-builder-workspace/Sources/SQLiteDB/Schema/SchemaReader.swift:156:16: warning: static property 'defaultValueColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<String?>' may have shared mutable state; this is an error in the Swift 6 language mode
154 | static let typeColumn = SQLExpression<String>("type")
155 | static let notNullColumn = SQLExpression<Int64>("notnull")
156 | static let defaultValueColumn = SQLExpression<String?>("dflt_value")
| |- warning: static property 'defaultValueColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<String?>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultValueColumn' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
157 | static let primaryKeyColumn = SQLExpression<Int64?>("pk")
158 | }
/host/spi-builder-workspace/Sources/SQLiteDB/Typed/Expression.swift:59:15: note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
57 |
58 | /// An `Expression` represents a raw SQL fragment and any associated bindings.
59 | public struct SQLExpression<Datatype>: ExpressionType {
| `- note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
60 |
61 | public typealias UnderlyingType = Datatype
/host/spi-builder-workspace/Sources/SQLiteDB/Schema/SchemaReader.swift:157:16: warning: static property 'primaryKeyColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<Int64?>' may have shared mutable state; this is an error in the Swift 6 language mode
155 | static let notNullColumn = SQLExpression<Int64>("notnull")
156 | static let defaultValueColumn = SQLExpression<String?>("dflt_value")
157 | static let primaryKeyColumn = SQLExpression<Int64?>("pk")
| |- warning: static property 'primaryKeyColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<Int64?>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'primaryKeyColumn' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
158 | }
159 |
/host/spi-builder-workspace/Sources/SQLiteDB/Typed/Expression.swift:59:15: note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
57 |
58 | /// An `Expression` represents a raw SQL fragment and any associated bindings.
59 | public struct SQLExpression<Datatype>: ExpressionType {
| `- note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
60 |
61 | public typealias UnderlyingType = Datatype
/host/spi-builder-workspace/Sources/SQLiteDB/Schema/SchemaReader.swift:162:16: warning: static property 'seqnoColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<Int64>' may have shared mutable state; this is an error in the Swift 6 language mode
160 | private enum IndexInfoTable {
161 | // The rank of the column within the index. (0 means left-most.)
162 | static let seqnoColumn = SQLExpression<Int64>("seqno")
| |- warning: static property 'seqnoColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<Int64>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'seqnoColumn' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
163 | // The rank of the column within the table being indexed.
164 | // A value of -1 means rowid and a value of -2 means that an expression is being used.
/host/spi-builder-workspace/Sources/SQLiteDB/Typed/Expression.swift:59:15: note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
57 |
58 | /// An `Expression` represents a raw SQL fragment and any associated bindings.
59 | public struct SQLExpression<Datatype>: ExpressionType {
| `- note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
60 |
61 | public typealias UnderlyingType = Datatype
/host/spi-builder-workspace/Sources/SQLiteDB/Schema/SchemaReader.swift:165:16: warning: static property 'cidColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<Int64>' may have shared mutable state; this is an error in the Swift 6 language mode
163 | // The rank of the column within the table being indexed.
164 | // A value of -1 means rowid and a value of -2 means that an expression is being used.
165 | static let cidColumn = SQLExpression<Int64>("cid")
| |- warning: static property 'cidColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<Int64>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'cidColumn' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
166 | // The name of the column being indexed. This columns is NULL if the column is the rowid or an expression.
167 | static let nameColumn = SQLExpression<String?>("name")
/host/spi-builder-workspace/Sources/SQLiteDB/Typed/Expression.swift:59:15: note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
57 |
58 | /// An `Expression` represents a raw SQL fragment and any associated bindings.
59 | public struct SQLExpression<Datatype>: ExpressionType {
| `- note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
60 |
61 | public typealias UnderlyingType = Datatype
/host/spi-builder-workspace/Sources/SQLiteDB/Schema/SchemaReader.swift:167:16: warning: static property 'nameColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<String?>' may have shared mutable state; this is an error in the Swift 6 language mode
165 | static let cidColumn = SQLExpression<Int64>("cid")
166 | // The name of the column being indexed. This columns is NULL if the column is the rowid or an expression.
167 | static let nameColumn = SQLExpression<String?>("name")
| |- warning: static property 'nameColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<String?>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'nameColumn' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
168 | }
169 |
/host/spi-builder-workspace/Sources/SQLiteDB/Typed/Expression.swift:59:15: note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
57 |
58 | /// An `Expression` represents a raw SQL fragment and any associated bindings.
59 | public struct SQLExpression<Datatype>: ExpressionType {
| `- note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
60 |
61 | public typealias UnderlyingType = Datatype
/host/spi-builder-workspace/Sources/SQLiteDB/Schema/SchemaReader.swift:172:16: warning: static property 'seqColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<Int64>' may have shared mutable state; this is an error in the Swift 6 language mode
170 | private enum IndexListTable {
171 | // A sequence number assigned to each index for internal tracking purposes.
172 | static let seqColumn = SQLExpression<Int64>("seq")
| |- warning: static property 'seqColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<Int64>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'seqColumn' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
173 | // The name of the index
174 | static let nameColumn = SQLExpression<String>("name")
/host/spi-builder-workspace/Sources/SQLiteDB/Typed/Expression.swift:59:15: note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
57 |
58 | /// An `Expression` represents a raw SQL fragment and any associated bindings.
59 | public struct SQLExpression<Datatype>: ExpressionType {
| `- note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
60 |
61 | public typealias UnderlyingType = Datatype
/host/spi-builder-workspace/Sources/SQLiteDB/Schema/SchemaReader.swift:174:16: warning: static property 'nameColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
172 | static let seqColumn = SQLExpression<Int64>("seq")
173 | // The name of the index
174 | static let nameColumn = SQLExpression<String>("name")
| |- warning: static property 'nameColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'nameColumn' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
175 | // "1" if the index is UNIQUE and "0" if not.
176 | static let uniqueColumn = SQLExpression<Int64>("unique")
/host/spi-builder-workspace/Sources/SQLiteDB/Typed/Expression.swift:59:15: note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
57 |
58 | /// An `Expression` represents a raw SQL fragment and any associated bindings.
59 | public struct SQLExpression<Datatype>: ExpressionType {
| `- note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
60 |
61 | public typealias UnderlyingType = Datatype
/host/spi-builder-workspace/Sources/SQLiteDB/Schema/SchemaReader.swift:176:16: warning: static property 'uniqueColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<Int64>' may have shared mutable state; this is an error in the Swift 6 language mode
174 | static let nameColumn = SQLExpression<String>("name")
175 | // "1" if the index is UNIQUE and "0" if not.
176 | static let uniqueColumn = SQLExpression<Int64>("unique")
| |- warning: static property 'uniqueColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<Int64>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'uniqueColumn' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
177 | // "c" if the index was created by a CREATE INDEX statement,
178 | // "u" if the index was created by a UNIQUE constraint, or
/host/spi-builder-workspace/Sources/SQLiteDB/Typed/Expression.swift:59:15: note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
57 |
58 | /// An `Expression` represents a raw SQL fragment and any associated bindings.
59 | public struct SQLExpression<Datatype>: ExpressionType {
| `- note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
60 |
61 | public typealias UnderlyingType = Datatype
/host/spi-builder-workspace/Sources/SQLiteDB/Schema/SchemaReader.swift:180:16: warning: static property 'originColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
178 | // "u" if the index was created by a UNIQUE constraint, or
179 | // "pk" if the index was created by a PRIMARY KEY constraint.
180 | static let originColumn = SQLExpression<String>("origin")
| |- warning: static property 'originColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'originColumn' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
181 | // "1" if the index is a partial index and "0" if not.
182 | static let partialColumn = SQLExpression<Int64>("partial")
/host/spi-builder-workspace/Sources/SQLiteDB/Typed/Expression.swift:59:15: note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
57 |
58 | /// An `Expression` represents a raw SQL fragment and any associated bindings.
59 | public struct SQLExpression<Datatype>: ExpressionType {
| `- note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
60 |
61 | public typealias UnderlyingType = Datatype
/host/spi-builder-workspace/Sources/SQLiteDB/Schema/SchemaReader.swift:182:16: warning: static property 'partialColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<Int64>' may have shared mutable state; this is an error in the Swift 6 language mode
180 | static let originColumn = SQLExpression<String>("origin")
181 | // "1" if the index is a partial index and "0" if not.
182 | static let partialColumn = SQLExpression<Int64>("partial")
| |- warning: static property 'partialColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<Int64>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'partialColumn' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
183 | }
184 |
/host/spi-builder-workspace/Sources/SQLiteDB/Typed/Expression.swift:59:15: note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
57 |
58 | /// An `Expression` represents a raw SQL fragment and any associated bindings.
59 | public struct SQLExpression<Datatype>: ExpressionType {
| `- note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
60 |
61 | public typealias UnderlyingType = Datatype
/host/spi-builder-workspace/Sources/SQLiteDB/Schema/SchemaReader.swift:186:16: warning: static property 'idColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<Int64>' may have shared mutable state; this is an error in the Swift 6 language mode
184 |
185 | private enum ForeignKeyListTable {
186 | static let idColumn = SQLExpression<Int64>("id")
| |- warning: static property 'idColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<Int64>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'idColumn' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
187 | static let seqColumn = SQLExpression<Int64>("seq")
188 | static let tableColumn = SQLExpression<String>("table")
/host/spi-builder-workspace/Sources/SQLiteDB/Typed/Expression.swift:59:15: note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
57 |
58 | /// An `Expression` represents a raw SQL fragment and any associated bindings.
59 | public struct SQLExpression<Datatype>: ExpressionType {
| `- note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
60 |
61 | public typealias UnderlyingType = Datatype
/host/spi-builder-workspace/Sources/SQLiteDB/Schema/SchemaReader.swift:187:16: warning: static property 'seqColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<Int64>' may have shared mutable state; this is an error in the Swift 6 language mode
185 | private enum ForeignKeyListTable {
186 | static let idColumn = SQLExpression<Int64>("id")
187 | static let seqColumn = SQLExpression<Int64>("seq")
| |- warning: static property 'seqColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<Int64>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'seqColumn' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
188 | static let tableColumn = SQLExpression<String>("table")
189 | static let fromColumn = SQLExpression<String>("from")
/host/spi-builder-workspace/Sources/SQLiteDB/Typed/Expression.swift:59:15: note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
57 |
58 | /// An `Expression` represents a raw SQL fragment and any associated bindings.
59 | public struct SQLExpression<Datatype>: ExpressionType {
| `- note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
60 |
61 | public typealias UnderlyingType = Datatype
/host/spi-builder-workspace/Sources/SQLiteDB/Schema/SchemaReader.swift:188:16: warning: static property 'tableColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
186 | static let idColumn = SQLExpression<Int64>("id")
187 | static let seqColumn = SQLExpression<Int64>("seq")
188 | static let tableColumn = SQLExpression<String>("table")
| |- warning: static property 'tableColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'tableColumn' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
189 | static let fromColumn = SQLExpression<String>("from")
190 | static let toColumn = SQLExpression<String?>("to") // when null, use primary key
/host/spi-builder-workspace/Sources/SQLiteDB/Typed/Expression.swift:59:15: note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
57 |
58 | /// An `Expression` represents a raw SQL fragment and any associated bindings.
59 | public struct SQLExpression<Datatype>: ExpressionType {
| `- note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
60 |
61 | public typealias UnderlyingType = Datatype
/host/spi-builder-workspace/Sources/SQLiteDB/Schema/SchemaReader.swift:189:16: warning: static property 'fromColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
187 | static let seqColumn = SQLExpression<Int64>("seq")
188 | static let tableColumn = SQLExpression<String>("table")
189 | static let fromColumn = SQLExpression<String>("from")
| |- warning: static property 'fromColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'fromColumn' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
190 | static let toColumn = SQLExpression<String?>("to") // when null, use primary key
191 | static let onUpdateColumn = SQLExpression<String>("on_update")
/host/spi-builder-workspace/Sources/SQLiteDB/Typed/Expression.swift:59:15: note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
57 |
58 | /// An `Expression` represents a raw SQL fragment and any associated bindings.
59 | public struct SQLExpression<Datatype>: ExpressionType {
| `- note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
60 |
61 | public typealias UnderlyingType = Datatype
/host/spi-builder-workspace/Sources/SQLiteDB/Schema/SchemaReader.swift:190:16: warning: static property 'toColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<String?>' may have shared mutable state; this is an error in the Swift 6 language mode
188 | static let tableColumn = SQLExpression<String>("table")
189 | static let fromColumn = SQLExpression<String>("from")
190 | static let toColumn = SQLExpression<String?>("to") // when null, use primary key
| |- warning: static property 'toColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<String?>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'toColumn' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
191 | static let onUpdateColumn = SQLExpression<String>("on_update")
192 | static let onDeleteColumn = SQLExpression<String>("on_delete")
/host/spi-builder-workspace/Sources/SQLiteDB/Typed/Expression.swift:59:15: note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
57 |
58 | /// An `Expression` represents a raw SQL fragment and any associated bindings.
59 | public struct SQLExpression<Datatype>: ExpressionType {
| `- note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
60 |
61 | public typealias UnderlyingType = Datatype
/host/spi-builder-workspace/Sources/SQLiteDB/Schema/SchemaReader.swift:191:16: warning: static property 'onUpdateColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
189 | static let fromColumn = SQLExpression<String>("from")
190 | static let toColumn = SQLExpression<String?>("to") // when null, use primary key
191 | static let onUpdateColumn = SQLExpression<String>("on_update")
| |- warning: static property 'onUpdateColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'onUpdateColumn' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
192 | static let onDeleteColumn = SQLExpression<String>("on_delete")
193 | static let matchColumn = SQLExpression<String>("match")
/host/spi-builder-workspace/Sources/SQLiteDB/Typed/Expression.swift:59:15: note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
57 |
58 | /// An `Expression` represents a raw SQL fragment and any associated bindings.
59 | public struct SQLExpression<Datatype>: ExpressionType {
| `- note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
60 |
61 | public typealias UnderlyingType = Datatype
/host/spi-builder-workspace/Sources/SQLiteDB/Schema/SchemaReader.swift:192:16: warning: static property 'onDeleteColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
190 | static let toColumn = SQLExpression<String?>("to") // when null, use primary key
191 | static let onUpdateColumn = SQLExpression<String>("on_update")
192 | static let onDeleteColumn = SQLExpression<String>("on_delete")
| |- warning: static property 'onDeleteColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'onDeleteColumn' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
193 | static let matchColumn = SQLExpression<String>("match")
194 | }
/host/spi-builder-workspace/Sources/SQLiteDB/Typed/Expression.swift:59:15: note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
57 |
58 | /// An `Expression` represents a raw SQL fragment and any associated bindings.
59 | public struct SQLExpression<Datatype>: ExpressionType {
| `- note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
60 |
61 | public typealias UnderlyingType = Datatype
/host/spi-builder-workspace/Sources/SQLiteDB/Schema/SchemaReader.swift:193:16: warning: static property 'matchColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
191 | static let onUpdateColumn = SQLExpression<String>("on_update")
192 | static let onDeleteColumn = SQLExpression<String>("on_delete")
193 | static let matchColumn = SQLExpression<String>("match")
| |- warning: static property 'matchColumn' is not concurrency-safe because non-'Sendable' type 'SQLExpression<String>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'matchColumn' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
194 | }
195 |
/host/spi-builder-workspace/Sources/SQLiteDB/Typed/Expression.swift:59:15: note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
57 |
58 | /// An `Expression` represents a raw SQL fragment and any associated bindings.
59 | public struct SQLExpression<Datatype>: ExpressionType {
| `- note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
60 |
61 | public typealias UnderlyingType = Datatype
[500/531] Compiling SQLiteDB Backup.swift
[501/531] Compiling SQLiteDB Blob.swift
[502/531] Compiling SQLiteDB Connection+Aggregation.swift
[503/531] Compiling SQLiteDB Connection+Attach.swift
[504/531] Compiling SQLiteDB Connection+Pragmas.swift
[505/531] Compiling SQLiteDB Connection.swift
/host/spi-builder-workspace/Sources/SQLiteDB/Core/Connection.swift:681:28: warning: static property 'queueKey' is not concurrency-safe because non-'Sendable' type 'DispatchSpecificKey<Int>' may have shared mutable state; this is an error in the Swift 6 language mode
679 | fileprivate var queue = DispatchQueue(label: "SQLite.Database", attributes: [])
680 |
681 | fileprivate static let queueKey = DispatchSpecificKey<Int>()
| `- warning: static property 'queueKey' is not concurrency-safe because non-'Sendable' type 'DispatchSpecificKey<Int>' may have shared mutable state; this is an error in the Swift 6 language mode
682 |
683 | fileprivate lazy var queueContext: Int = unsafeBitCast(self, to: Int.self)
Dispatch.DispatchSpecificKey:1:20: note: generic class 'DispatchSpecificKey' does not conform to the 'Sendable' protocol
1 | final public class DispatchSpecificKey<T> {
| `- note: generic class 'DispatchSpecificKey' does not conform to the 'Sendable' protocol
2 | public init()
3 | deinit
/host/spi-builder-workspace/Sources/SQLiteDB/Core/Connection.swift:26:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Dispatch'
24 |
25 | import Foundation
26 | import Dispatch
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Dispatch'
27 | #if SQLITE_SWIFT_STANDALONE
28 | import sqlite3
:
679 | fileprivate var queue = DispatchQueue(label: "SQLite.Database", attributes: [])
680 |
681 | fileprivate static let queueKey = DispatchSpecificKey<Int>()
| |- note: add '@MainActor' to make static property 'queueKey' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
682 |
683 | fileprivate lazy var queueContext: Int = unsafeBitCast(self, to: Int.self)
/host/spi-builder-workspace/Sources/SQLiteDB/Core/Result.swift:22:10: warning: associated value 'error(message:code:statement:)' of 'Sendable'-conforming enum 'Result' has non-sendable type 'Statement'; this is an error in the Swift 6 language mode
20 | ///
21 | /// - statement: the statement which produced the error
22 | case error(message: String, code: Int32, statement: Statement?)
| `- warning: associated value 'error(message:code:statement:)' of 'Sendable'-conforming enum 'Result' has non-sendable type 'Statement'; this is an error in the Swift 6 language mode
23 |
24 | /// Represents a SQLite specific [extended error code] (https://sqlite.org/rescode.html#primary_result_codes_versus_extended_result_codes)
/host/spi-builder-workspace/Sources/SQLiteDB/Core/Statement.swift:36:20: note: class 'Statement' does not conform to the 'Sendable' protocol
34 |
35 | /// A single SQL statement.
36 | public final class Statement {
| `- note: class 'Statement' does not conform to the 'Sendable' protocol
37 |
38 | fileprivate var handle: OpaquePointer?
/host/spi-builder-workspace/Sources/SQLiteDB/Core/Result.swift:31:10: warning: associated value 'extendedError(message:extendedCode:statement:)' of 'Sendable'-conforming enum 'Result' has non-sendable type 'Statement'; this is an error in the Swift 6 language mode
29 | ///
30 | /// - statement: the statement which produced the error
31 | case extendedError(message: String, extendedCode: Int32, statement: Statement?)
| `- warning: associated value 'extendedError(message:extendedCode:statement:)' of 'Sendable'-conforming enum 'Result' has non-sendable type 'Statement'; this is an error in the Swift 6 language mode
32 |
33 | init?(errorCode: Int32, connection: Connection, statement: Statement? = nil) {
/host/spi-builder-workspace/Sources/SQLiteDB/Core/Statement.swift:36:20: note: class 'Statement' does not conform to the 'Sendable' protocol
34 |
35 | /// A single SQL statement.
36 | public final class Statement {
| `- note: class 'Statement' does not conform to the 'Sendable' protocol
37 |
38 | fileprivate var handle: OpaquePointer?
/host/spi-builder-workspace/Sources/SQLiteDB/Core/SQLiteVersion.swift:20:16: warning: static property 'zero' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
18 | }
19 |
20 | static var zero: SQLiteVersion = .init(major: 0, minor: 0)
| |- warning: static property 'zero' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'zero' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'zero' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 | private var tuple: (Int, Int, Int) { (major, minor, point) }
22 | }
[506/531] Compiling SQLiteDB Errors.swift
/host/spi-builder-workspace/Sources/SQLiteDB/Core/Connection.swift:681:28: warning: static property 'queueKey' is not concurrency-safe because non-'Sendable' type 'DispatchSpecificKey<Int>' may have shared mutable state; this is an error in the Swift 6 language mode
679 | fileprivate var queue = DispatchQueue(label: "SQLite.Database", attributes: [])
680 |
681 | fileprivate static let queueKey = DispatchSpecificKey<Int>()
| `- warning: static property 'queueKey' is not concurrency-safe because non-'Sendable' type 'DispatchSpecificKey<Int>' may have shared mutable state; this is an error in the Swift 6 language mode
682 |
683 | fileprivate lazy var queueContext: Int = unsafeBitCast(self, to: Int.self)
Dispatch.DispatchSpecificKey:1:20: note: generic class 'DispatchSpecificKey' does not conform to the 'Sendable' protocol
1 | final public class DispatchSpecificKey<T> {
| `- note: generic class 'DispatchSpecificKey' does not conform to the 'Sendable' protocol
2 | public init()
3 | deinit
/host/spi-builder-workspace/Sources/SQLiteDB/Core/Connection.swift:26:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Dispatch'
24 |
25 | import Foundation
26 | import Dispatch
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Dispatch'
27 | #if SQLITE_SWIFT_STANDALONE
28 | import sqlite3
:
679 | fileprivate var queue = DispatchQueue(label: "SQLite.Database", attributes: [])
680 |
681 | fileprivate static let queueKey = DispatchSpecificKey<Int>()
| |- note: add '@MainActor' to make static property 'queueKey' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
682 |
683 | fileprivate lazy var queueContext: Int = unsafeBitCast(self, to: Int.self)
/host/spi-builder-workspace/Sources/SQLiteDB/Core/Result.swift:22:10: warning: associated value 'error(message:code:statement:)' of 'Sendable'-conforming enum 'Result' has non-sendable type 'Statement'; this is an error in the Swift 6 language mode
20 | ///
21 | /// - statement: the statement which produced the error
22 | case error(message: String, code: Int32, statement: Statement?)
| `- warning: associated value 'error(message:code:statement:)' of 'Sendable'-conforming enum 'Result' has non-sendable type 'Statement'; this is an error in the Swift 6 language mode
23 |
24 | /// Represents a SQLite specific [extended error code] (https://sqlite.org/rescode.html#primary_result_codes_versus_extended_result_codes)
/host/spi-builder-workspace/Sources/SQLiteDB/Core/Statement.swift:36:20: note: class 'Statement' does not conform to the 'Sendable' protocol
34 |
35 | /// A single SQL statement.
36 | public final class Statement {
| `- note: class 'Statement' does not conform to the 'Sendable' protocol
37 |
38 | fileprivate var handle: OpaquePointer?
/host/spi-builder-workspace/Sources/SQLiteDB/Core/Result.swift:31:10: warning: associated value 'extendedError(message:extendedCode:statement:)' of 'Sendable'-conforming enum 'Result' has non-sendable type 'Statement'; this is an error in the Swift 6 language mode
29 | ///
30 | /// - statement: the statement which produced the error
31 | case extendedError(message: String, extendedCode: Int32, statement: Statement?)
| `- warning: associated value 'extendedError(message:extendedCode:statement:)' of 'Sendable'-conforming enum 'Result' has non-sendable type 'Statement'; this is an error in the Swift 6 language mode
32 |
33 | init?(errorCode: Int32, connection: Connection, statement: Statement? = nil) {
/host/spi-builder-workspace/Sources/SQLiteDB/Core/Statement.swift:36:20: note: class 'Statement' does not conform to the 'Sendable' protocol
34 |
35 | /// A single SQL statement.
36 | public final class Statement {
| `- note: class 'Statement' does not conform to the 'Sendable' protocol
37 |
38 | fileprivate var handle: OpaquePointer?
/host/spi-builder-workspace/Sources/SQLiteDB/Core/SQLiteVersion.swift:20:16: warning: static property 'zero' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
18 | }
19 |
20 | static var zero: SQLiteVersion = .init(major: 0, minor: 0)
| |- warning: static property 'zero' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'zero' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'zero' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 | private var tuple: (Int, Int, Int) { (major, minor, point) }
22 | }
[507/531] Compiling SQLiteDB Result.swift
/host/spi-builder-workspace/Sources/SQLiteDB/Core/Connection.swift:681:28: warning: static property 'queueKey' is not concurrency-safe because non-'Sendable' type 'DispatchSpecificKey<Int>' may have shared mutable state; this is an error in the Swift 6 language mode
679 | fileprivate var queue = DispatchQueue(label: "SQLite.Database", attributes: [])
680 |
681 | fileprivate static let queueKey = DispatchSpecificKey<Int>()
| `- warning: static property 'queueKey' is not concurrency-safe because non-'Sendable' type 'DispatchSpecificKey<Int>' may have shared mutable state; this is an error in the Swift 6 language mode
682 |
683 | fileprivate lazy var queueContext: Int = unsafeBitCast(self, to: Int.self)
Dispatch.DispatchSpecificKey:1:20: note: generic class 'DispatchSpecificKey' does not conform to the 'Sendable' protocol
1 | final public class DispatchSpecificKey<T> {
| `- note: generic class 'DispatchSpecificKey' does not conform to the 'Sendable' protocol
2 | public init()
3 | deinit
/host/spi-builder-workspace/Sources/SQLiteDB/Core/Connection.swift:26:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Dispatch'
24 |
25 | import Foundation
26 | import Dispatch
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Dispatch'
27 | #if SQLITE_SWIFT_STANDALONE
28 | import sqlite3
:
679 | fileprivate var queue = DispatchQueue(label: "SQLite.Database", attributes: [])
680 |
681 | fileprivate static let queueKey = DispatchSpecificKey<Int>()
| |- note: add '@MainActor' to make static property 'queueKey' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
682 |
683 | fileprivate lazy var queueContext: Int = unsafeBitCast(self, to: Int.self)
/host/spi-builder-workspace/Sources/SQLiteDB/Core/Result.swift:22:10: warning: associated value 'error(message:code:statement:)' of 'Sendable'-conforming enum 'Result' has non-sendable type 'Statement'; this is an error in the Swift 6 language mode
20 | ///
21 | /// - statement: the statement which produced the error
22 | case error(message: String, code: Int32, statement: Statement?)
| `- warning: associated value 'error(message:code:statement:)' of 'Sendable'-conforming enum 'Result' has non-sendable type 'Statement'; this is an error in the Swift 6 language mode
23 |
24 | /// Represents a SQLite specific [extended error code] (https://sqlite.org/rescode.html#primary_result_codes_versus_extended_result_codes)
/host/spi-builder-workspace/Sources/SQLiteDB/Core/Statement.swift:36:20: note: class 'Statement' does not conform to the 'Sendable' protocol
34 |
35 | /// A single SQL statement.
36 | public final class Statement {
| `- note: class 'Statement' does not conform to the 'Sendable' protocol
37 |
38 | fileprivate var handle: OpaquePointer?
/host/spi-builder-workspace/Sources/SQLiteDB/Core/Result.swift:31:10: warning: associated value 'extendedError(message:extendedCode:statement:)' of 'Sendable'-conforming enum 'Result' has non-sendable type 'Statement'; this is an error in the Swift 6 language mode
29 | ///
30 | /// - statement: the statement which produced the error
31 | case extendedError(message: String, extendedCode: Int32, statement: Statement?)
| `- warning: associated value 'extendedError(message:extendedCode:statement:)' of 'Sendable'-conforming enum 'Result' has non-sendable type 'Statement'; this is an error in the Swift 6 language mode
32 |
33 | init?(errorCode: Int32, connection: Connection, statement: Statement? = nil) {
/host/spi-builder-workspace/Sources/SQLiteDB/Core/Statement.swift:36:20: note: class 'Statement' does not conform to the 'Sendable' protocol
34 |
35 | /// A single SQL statement.
36 | public final class Statement {
| `- note: class 'Statement' does not conform to the 'Sendable' protocol
37 |
38 | fileprivate var handle: OpaquePointer?
/host/spi-builder-workspace/Sources/SQLiteDB/Core/SQLiteVersion.swift:20:16: warning: static property 'zero' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
18 | }
19 |
20 | static var zero: SQLiteVersion = .init(major: 0, minor: 0)
| |- warning: static property 'zero' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'zero' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'zero' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 | private var tuple: (Int, Int, Int) { (major, minor, point) }
22 | }
[508/531] Compiling SQLiteDB SQLiteFeature.swift
/host/spi-builder-workspace/Sources/SQLiteDB/Core/Connection.swift:681:28: warning: static property 'queueKey' is not concurrency-safe because non-'Sendable' type 'DispatchSpecificKey<Int>' may have shared mutable state; this is an error in the Swift 6 language mode
679 | fileprivate var queue = DispatchQueue(label: "SQLite.Database", attributes: [])
680 |
681 | fileprivate static let queueKey = DispatchSpecificKey<Int>()
| `- warning: static property 'queueKey' is not concurrency-safe because non-'Sendable' type 'DispatchSpecificKey<Int>' may have shared mutable state; this is an error in the Swift 6 language mode
682 |
683 | fileprivate lazy var queueContext: Int = unsafeBitCast(self, to: Int.self)
Dispatch.DispatchSpecificKey:1:20: note: generic class 'DispatchSpecificKey' does not conform to the 'Sendable' protocol
1 | final public class DispatchSpecificKey<T> {
| `- note: generic class 'DispatchSpecificKey' does not conform to the 'Sendable' protocol
2 | public init()
3 | deinit
/host/spi-builder-workspace/Sources/SQLiteDB/Core/Connection.swift:26:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Dispatch'
24 |
25 | import Foundation
26 | import Dispatch
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Dispatch'
27 | #if SQLITE_SWIFT_STANDALONE
28 | import sqlite3
:
679 | fileprivate var queue = DispatchQueue(label: "SQLite.Database", attributes: [])
680 |
681 | fileprivate static let queueKey = DispatchSpecificKey<Int>()
| |- note: add '@MainActor' to make static property 'queueKey' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
682 |
683 | fileprivate lazy var queueContext: Int = unsafeBitCast(self, to: Int.self)
/host/spi-builder-workspace/Sources/SQLiteDB/Core/Result.swift:22:10: warning: associated value 'error(message:code:statement:)' of 'Sendable'-conforming enum 'Result' has non-sendable type 'Statement'; this is an error in the Swift 6 language mode
20 | ///
21 | /// - statement: the statement which produced the error
22 | case error(message: String, code: Int32, statement: Statement?)
| `- warning: associated value 'error(message:code:statement:)' of 'Sendable'-conforming enum 'Result' has non-sendable type 'Statement'; this is an error in the Swift 6 language mode
23 |
24 | /// Represents a SQLite specific [extended error code] (https://sqlite.org/rescode.html#primary_result_codes_versus_extended_result_codes)
/host/spi-builder-workspace/Sources/SQLiteDB/Core/Statement.swift:36:20: note: class 'Statement' does not conform to the 'Sendable' protocol
34 |
35 | /// A single SQL statement.
36 | public final class Statement {
| `- note: class 'Statement' does not conform to the 'Sendable' protocol
37 |
38 | fileprivate var handle: OpaquePointer?
/host/spi-builder-workspace/Sources/SQLiteDB/Core/Result.swift:31:10: warning: associated value 'extendedError(message:extendedCode:statement:)' of 'Sendable'-conforming enum 'Result' has non-sendable type 'Statement'; this is an error in the Swift 6 language mode
29 | ///
30 | /// - statement: the statement which produced the error
31 | case extendedError(message: String, extendedCode: Int32, statement: Statement?)
| `- warning: associated value 'extendedError(message:extendedCode:statement:)' of 'Sendable'-conforming enum 'Result' has non-sendable type 'Statement'; this is an error in the Swift 6 language mode
32 |
33 | init?(errorCode: Int32, connection: Connection, statement: Statement? = nil) {
/host/spi-builder-workspace/Sources/SQLiteDB/Core/Statement.swift:36:20: note: class 'Statement' does not conform to the 'Sendable' protocol
34 |
35 | /// A single SQL statement.
36 | public final class Statement {
| `- note: class 'Statement' does not conform to the 'Sendable' protocol
37 |
38 | fileprivate var handle: OpaquePointer?
/host/spi-builder-workspace/Sources/SQLiteDB/Core/SQLiteVersion.swift:20:16: warning: static property 'zero' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
18 | }
19 |
20 | static var zero: SQLiteVersion = .init(major: 0, minor: 0)
| |- warning: static property 'zero' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'zero' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'zero' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 | private var tuple: (Int, Int, Int) { (major, minor, point) }
22 | }
[509/531] Compiling SQLiteDB SQLiteVersion.swift
/host/spi-builder-workspace/Sources/SQLiteDB/Core/Connection.swift:681:28: warning: static property 'queueKey' is not concurrency-safe because non-'Sendable' type 'DispatchSpecificKey<Int>' may have shared mutable state; this is an error in the Swift 6 language mode
679 | fileprivate var queue = DispatchQueue(label: "SQLite.Database", attributes: [])
680 |
681 | fileprivate static let queueKey = DispatchSpecificKey<Int>()
| `- warning: static property 'queueKey' is not concurrency-safe because non-'Sendable' type 'DispatchSpecificKey<Int>' may have shared mutable state; this is an error in the Swift 6 language mode
682 |
683 | fileprivate lazy var queueContext: Int = unsafeBitCast(self, to: Int.self)
Dispatch.DispatchSpecificKey:1:20: note: generic class 'DispatchSpecificKey' does not conform to the 'Sendable' protocol
1 | final public class DispatchSpecificKey<T> {
| `- note: generic class 'DispatchSpecificKey' does not conform to the 'Sendable' protocol
2 | public init()
3 | deinit
/host/spi-builder-workspace/Sources/SQLiteDB/Core/Connection.swift:26:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Dispatch'
24 |
25 | import Foundation
26 | import Dispatch
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Dispatch'
27 | #if SQLITE_SWIFT_STANDALONE
28 | import sqlite3
:
679 | fileprivate var queue = DispatchQueue(label: "SQLite.Database", attributes: [])
680 |
681 | fileprivate static let queueKey = DispatchSpecificKey<Int>()
| |- note: add '@MainActor' to make static property 'queueKey' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
682 |
683 | fileprivate lazy var queueContext: Int = unsafeBitCast(self, to: Int.self)
/host/spi-builder-workspace/Sources/SQLiteDB/Core/Result.swift:22:10: warning: associated value 'error(message:code:statement:)' of 'Sendable'-conforming enum 'Result' has non-sendable type 'Statement'; this is an error in the Swift 6 language mode
20 | ///
21 | /// - statement: the statement which produced the error
22 | case error(message: String, code: Int32, statement: Statement?)
| `- warning: associated value 'error(message:code:statement:)' of 'Sendable'-conforming enum 'Result' has non-sendable type 'Statement'; this is an error in the Swift 6 language mode
23 |
24 | /// Represents a SQLite specific [extended error code] (https://sqlite.org/rescode.html#primary_result_codes_versus_extended_result_codes)
/host/spi-builder-workspace/Sources/SQLiteDB/Core/Statement.swift:36:20: note: class 'Statement' does not conform to the 'Sendable' protocol
34 |
35 | /// A single SQL statement.
36 | public final class Statement {
| `- note: class 'Statement' does not conform to the 'Sendable' protocol
37 |
38 | fileprivate var handle: OpaquePointer?
/host/spi-builder-workspace/Sources/SQLiteDB/Core/Result.swift:31:10: warning: associated value 'extendedError(message:extendedCode:statement:)' of 'Sendable'-conforming enum 'Result' has non-sendable type 'Statement'; this is an error in the Swift 6 language mode
29 | ///
30 | /// - statement: the statement which produced the error
31 | case extendedError(message: String, extendedCode: Int32, statement: Statement?)
| `- warning: associated value 'extendedError(message:extendedCode:statement:)' of 'Sendable'-conforming enum 'Result' has non-sendable type 'Statement'; this is an error in the Swift 6 language mode
32 |
33 | init?(errorCode: Int32, connection: Connection, statement: Statement? = nil) {
/host/spi-builder-workspace/Sources/SQLiteDB/Core/Statement.swift:36:20: note: class 'Statement' does not conform to the 'Sendable' protocol
34 |
35 | /// A single SQL statement.
36 | public final class Statement {
| `- note: class 'Statement' does not conform to the 'Sendable' protocol
37 |
38 | fileprivate var handle: OpaquePointer?
/host/spi-builder-workspace/Sources/SQLiteDB/Core/SQLiteVersion.swift:20:16: warning: static property 'zero' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
18 | }
19 |
20 | static var zero: SQLiteVersion = .init(major: 0, minor: 0)
| |- warning: static property 'zero' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'zero' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'zero' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 | private var tuple: (Int, Int, Int) { (major, minor, point) }
22 | }
[510/531] Compiling SQLiteDB DateAndTimeFunctions.swift
/host/spi-builder-workspace/Sources/SQLiteDB/Typed/Expression.swift:141:12: warning: let 'rowid' is not concurrency-safe because non-'Sendable' type 'SQLExpression<Int64>' may have shared mutable state; this is an error in the Swift 6 language mode
57 |
58 | /// An `Expression` represents a raw SQL fragment and any associated bindings.
59 | public struct SQLExpression<Datatype>: ExpressionType {
| `- note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
60 |
61 | public typealias UnderlyingType = Datatype
:
139 | }
140 |
141 | public let rowid = SQLExpression<Int64>("ROWID")
| |- warning: let 'rowid' is not concurrency-safe because non-'Sendable' type 'SQLExpression<Int64>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'rowid' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
142 |
143 | public func cast<T: Value, U: Value>(_ expression: SQLExpression<T>) -> SQLExpression<U> {
[511/531] Compiling SQLiteDB Expression.swift
/host/spi-builder-workspace/Sources/SQLiteDB/Typed/Expression.swift:141:12: warning: let 'rowid' is not concurrency-safe because non-'Sendable' type 'SQLExpression<Int64>' may have shared mutable state; this is an error in the Swift 6 language mode
57 |
58 | /// An `Expression` represents a raw SQL fragment and any associated bindings.
59 | public struct SQLExpression<Datatype>: ExpressionType {
| `- note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
60 |
61 | public typealias UnderlyingType = Datatype
:
139 | }
140 |
141 | public let rowid = SQLExpression<Int64>("ROWID")
| |- warning: let 'rowid' is not concurrency-safe because non-'Sendable' type 'SQLExpression<Int64>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'rowid' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
142 |
143 | public func cast<T: Value, U: Value>(_ expression: SQLExpression<T>) -> SQLExpression<U> {
[512/531] Compiling SQLiteDB Operators.swift
/host/spi-builder-workspace/Sources/SQLiteDB/Typed/Expression.swift:141:12: warning: let 'rowid' is not concurrency-safe because non-'Sendable' type 'SQLExpression<Int64>' may have shared mutable state; this is an error in the Swift 6 language mode
57 |
58 | /// An `Expression` represents a raw SQL fragment and any associated bindings.
59 | public struct SQLExpression<Datatype>: ExpressionType {
| `- note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
60 |
61 | public typealias UnderlyingType = Datatype
:
139 | }
140 |
141 | public let rowid = SQLExpression<Int64>("ROWID")
| |- warning: let 'rowid' is not concurrency-safe because non-'Sendable' type 'SQLExpression<Int64>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'rowid' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
142 |
143 | public func cast<T: Value, U: Value>(_ expression: SQLExpression<T>) -> SQLExpression<U> {
[513/531] Compiling SQLiteDB Query+with.swift
/host/spi-builder-workspace/Sources/SQLiteDB/Typed/Expression.swift:141:12: warning: let 'rowid' is not concurrency-safe because non-'Sendable' type 'SQLExpression<Int64>' may have shared mutable state; this is an error in the Swift 6 language mode
57 |
58 | /// An `Expression` represents a raw SQL fragment and any associated bindings.
59 | public struct SQLExpression<Datatype>: ExpressionType {
| `- note: consider making generic struct 'SQLExpression' conform to the 'Sendable' protocol
60 |
61 | public typealias UnderlyingType = Datatype
:
139 | }
140 |
141 | public let rowid = SQLExpression<Int64>("ROWID")
| |- warning: let 'rowid' is not concurrency-safe because non-'Sendable' type 'SQLExpression<Int64>' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make let 'rowid' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
142 |
143 | public func cast<T: Value, U: Value>(_ expression: SQLExpression<T>) -> SQLExpression<U> {
[514/531] Compiling SQLiteDB Coding.swift
[515/531] Compiling SQLiteDB Collation.swift
[516/531] Compiling SQLiteDB CoreFunctions.swift
[517/531] Compiling SQLiteDB CustomFunctions.swift
[518/531] Compiling SQLiteDB FTS5.swift
/host/spi-builder-workspace/Sources/SQLiteDB/Foundation.swift:64:12: warning: var 'dateFormatter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
62 | /// If multiple date formats are used in an application’s database(s), use a
63 | /// custom `Value` type per additional format.
64 | public var dateFormatter: DateFormatter = {
| |- warning: var 'dateFormatter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'dateFormatter' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'dateFormatter' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
65 | let formatter = DateFormatter()
66 | formatter.dateFormat = "yyyy-MM-dd'T'HH:mm:ss.SSS"
[519/531] Compiling SQLiteDB RTree.swift
/host/spi-builder-workspace/Sources/SQLiteDB/Foundation.swift:64:12: warning: var 'dateFormatter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
62 | /// If multiple date formats are used in an application’s database(s), use a
63 | /// custom `Value` type per additional format.
64 | public var dateFormatter: DateFormatter = {
| |- warning: var 'dateFormatter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'dateFormatter' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'dateFormatter' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
65 | let formatter = DateFormatter()
66 | formatter.dateFormat = "yyyy-MM-dd'T'HH:mm:ss.SSS"
[520/531] Compiling SQLiteDB Foundation.swift
/host/spi-builder-workspace/Sources/SQLiteDB/Foundation.swift:64:12: warning: var 'dateFormatter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
62 | /// If multiple date formats are used in an application’s database(s), use a
63 | /// custom `Value` type per additional format.
64 | public var dateFormatter: DateFormatter = {
| |- warning: var 'dateFormatter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'dateFormatter' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'dateFormatter' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
65 | let formatter = DateFormatter()
66 | formatter.dateFormat = "yyyy-MM-dd'T'HH:mm:ss.SSS"
[521/531] Compiling SQLiteDB Helpers.swift
/host/spi-builder-workspace/Sources/SQLiteDB/Foundation.swift:64:12: warning: var 'dateFormatter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
62 | /// If multiple date formats are used in an application’s database(s), use a
63 | /// custom `Value` type per additional format.
64 | public var dateFormatter: DateFormatter = {
| |- warning: var 'dateFormatter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'dateFormatter' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'dateFormatter' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
65 | let formatter = DateFormatter()
66 | formatter.dateFormat = "yyyy-MM-dd'T'HH:mm:ss.SSS"
[522/531] Compiling SQLiteDB Connection+Schema.swift
/host/spi-builder-workspace/Sources/SQLiteDB/Foundation.swift:64:12: warning: var 'dateFormatter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
62 | /// If multiple date formats are used in an application’s database(s), use a
63 | /// custom `Value` type per additional format.
64 | public var dateFormatter: DateFormatter = {
| |- warning: var 'dateFormatter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'dateFormatter' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'dateFormatter' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
65 | let formatter = DateFormatter()
66 | formatter.dateFormat = "yyyy-MM-dd'T'HH:mm:ss.SSS"
[523/531] Compiling SQLiteDB Statement.swift
/host/spi-builder-workspace/Sources/SQLiteDB/Core/Value.swift:108:23: warning: static property 'declaredDatatype' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
106 | extension Bool: Binding, Value {
107 |
108 | public static var declaredDatatype = Int64.declaredDatatype
| |- warning: static property 'declaredDatatype' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'declaredDatatype' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'declaredDatatype' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
109 |
110 | public static func fromDatatypeValue(_ datatypeValue: Int64) -> Bool {
/host/spi-builder-workspace/Sources/SQLiteDB/Core/Value.swift:122:23: warning: static property 'declaredDatatype' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
120 | extension Int: Number, Value {
121 |
122 | public static var declaredDatatype = Int64.declaredDatatype
| |- warning: static property 'declaredDatatype' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'declaredDatatype' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'declaredDatatype' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
123 |
124 | public static func fromDatatypeValue(_ datatypeValue: Int64) -> Int {
/host/spi-builder-workspace/Sources/SQLiteDB/Extensions/FTS4.swift:93:23: warning: static property 'Simple' is not concurrency-safe because non-'Sendable' type 'Tokenizer' may have shared mutable state; this is an error in the Swift 6 language mode
89 |
90 | // swiftlint:disable identifier_name
91 | public struct Tokenizer {
| `- note: consider making struct 'Tokenizer' conform to the 'Sendable' protocol
92 |
93 | public static let Simple = Tokenizer("simple")
| |- warning: static property 'Simple' is not concurrency-safe because non-'Sendable' type 'Tokenizer' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'Simple' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
94 | public static let Porter = Tokenizer("porter")
95 |
/host/spi-builder-workspace/Sources/SQLiteDB/Extensions/FTS4.swift:94:23: warning: static property 'Porter' is not concurrency-safe because non-'Sendable' type 'Tokenizer' may have shared mutable state; this is an error in the Swift 6 language mode
89 |
90 | // swiftlint:disable identifier_name
91 | public struct Tokenizer {
| `- note: consider making struct 'Tokenizer' conform to the 'Sendable' protocol
92 |
93 | public static let Simple = Tokenizer("simple")
94 | public static let Porter = Tokenizer("porter")
| |- warning: static property 'Porter' is not concurrency-safe because non-'Sendable' type 'Tokenizer' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'Porter' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
95 |
96 | public static func Unicode61(removeDiacritics: Bool? = nil,
[524/531] Compiling SQLiteDB URIQueryParameter.swift
/host/spi-builder-workspace/Sources/SQLiteDB/Core/Value.swift:108:23: warning: static property 'declaredDatatype' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
106 | extension Bool: Binding, Value {
107 |
108 | public static var declaredDatatype = Int64.declaredDatatype
| |- warning: static property 'declaredDatatype' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'declaredDatatype' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'declaredDatatype' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
109 |
110 | public static func fromDatatypeValue(_ datatypeValue: Int64) -> Bool {
/host/spi-builder-workspace/Sources/SQLiteDB/Core/Value.swift:122:23: warning: static property 'declaredDatatype' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
120 | extension Int: Number, Value {
121 |
122 | public static var declaredDatatype = Int64.declaredDatatype
| |- warning: static property 'declaredDatatype' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'declaredDatatype' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'declaredDatatype' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
123 |
124 | public static func fromDatatypeValue(_ datatypeValue: Int64) -> Int {
/host/spi-builder-workspace/Sources/SQLiteDB/Extensions/FTS4.swift:93:23: warning: static property 'Simple' is not concurrency-safe because non-'Sendable' type 'Tokenizer' may have shared mutable state; this is an error in the Swift 6 language mode
89 |
90 | // swiftlint:disable identifier_name
91 | public struct Tokenizer {
| `- note: consider making struct 'Tokenizer' conform to the 'Sendable' protocol
92 |
93 | public static let Simple = Tokenizer("simple")
| |- warning: static property 'Simple' is not concurrency-safe because non-'Sendable' type 'Tokenizer' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'Simple' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
94 | public static let Porter = Tokenizer("porter")
95 |
/host/spi-builder-workspace/Sources/SQLiteDB/Extensions/FTS4.swift:94:23: warning: static property 'Porter' is not concurrency-safe because non-'Sendable' type 'Tokenizer' may have shared mutable state; this is an error in the Swift 6 language mode
89 |
90 | // swiftlint:disable identifier_name
91 | public struct Tokenizer {
| `- note: consider making struct 'Tokenizer' conform to the 'Sendable' protocol
92 |
93 | public static let Simple = Tokenizer("simple")
94 | public static let Porter = Tokenizer("porter")
| |- warning: static property 'Porter' is not concurrency-safe because non-'Sendable' type 'Tokenizer' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'Porter' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
95 |
96 | public static func Unicode61(removeDiacritics: Bool? = nil,
[525/531] Compiling SQLiteDB Value.swift
/host/spi-builder-workspace/Sources/SQLiteDB/Core/Value.swift:108:23: warning: static property 'declaredDatatype' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
106 | extension Bool: Binding, Value {
107 |
108 | public static var declaredDatatype = Int64.declaredDatatype
| |- warning: static property 'declaredDatatype' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'declaredDatatype' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'declaredDatatype' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
109 |
110 | public static func fromDatatypeValue(_ datatypeValue: Int64) -> Bool {
/host/spi-builder-workspace/Sources/SQLiteDB/Core/Value.swift:122:23: warning: static property 'declaredDatatype' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
120 | extension Int: Number, Value {
121 |
122 | public static var declaredDatatype = Int64.declaredDatatype
| |- warning: static property 'declaredDatatype' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'declaredDatatype' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'declaredDatatype' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
123 |
124 | public static func fromDatatypeValue(_ datatypeValue: Int64) -> Int {
/host/spi-builder-workspace/Sources/SQLiteDB/Extensions/FTS4.swift:93:23: warning: static property 'Simple' is not concurrency-safe because non-'Sendable' type 'Tokenizer' may have shared mutable state; this is an error in the Swift 6 language mode
89 |
90 | // swiftlint:disable identifier_name
91 | public struct Tokenizer {
| `- note: consider making struct 'Tokenizer' conform to the 'Sendable' protocol
92 |
93 | public static let Simple = Tokenizer("simple")
| |- warning: static property 'Simple' is not concurrency-safe because non-'Sendable' type 'Tokenizer' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'Simple' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
94 | public static let Porter = Tokenizer("porter")
95 |
/host/spi-builder-workspace/Sources/SQLiteDB/Extensions/FTS4.swift:94:23: warning: static property 'Porter' is not concurrency-safe because non-'Sendable' type 'Tokenizer' may have shared mutable state; this is an error in the Swift 6 language mode
89 |
90 | // swiftlint:disable identifier_name
91 | public struct Tokenizer {
| `- note: consider making struct 'Tokenizer' conform to the 'Sendable' protocol
92 |
93 | public static let Simple = Tokenizer("simple")
94 | public static let Porter = Tokenizer("porter")
| |- warning: static property 'Porter' is not concurrency-safe because non-'Sendable' type 'Tokenizer' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'Porter' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
95 |
96 | public static func Unicode61(removeDiacritics: Bool? = nil,
[526/531] Compiling SQLiteDB Cipher.swift
/host/spi-builder-workspace/Sources/SQLiteDB/Core/Value.swift:108:23: warning: static property 'declaredDatatype' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
106 | extension Bool: Binding, Value {
107 |
108 | public static var declaredDatatype = Int64.declaredDatatype
| |- warning: static property 'declaredDatatype' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'declaredDatatype' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'declaredDatatype' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
109 |
110 | public static func fromDatatypeValue(_ datatypeValue: Int64) -> Bool {
/host/spi-builder-workspace/Sources/SQLiteDB/Core/Value.swift:122:23: warning: static property 'declaredDatatype' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
120 | extension Int: Number, Value {
121 |
122 | public static var declaredDatatype = Int64.declaredDatatype
| |- warning: static property 'declaredDatatype' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'declaredDatatype' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'declaredDatatype' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
123 |
124 | public static func fromDatatypeValue(_ datatypeValue: Int64) -> Int {
/host/spi-builder-workspace/Sources/SQLiteDB/Extensions/FTS4.swift:93:23: warning: static property 'Simple' is not concurrency-safe because non-'Sendable' type 'Tokenizer' may have shared mutable state; this is an error in the Swift 6 language mode
89 |
90 | // swiftlint:disable identifier_name
91 | public struct Tokenizer {
| `- note: consider making struct 'Tokenizer' conform to the 'Sendable' protocol
92 |
93 | public static let Simple = Tokenizer("simple")
| |- warning: static property 'Simple' is not concurrency-safe because non-'Sendable' type 'Tokenizer' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'Simple' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
94 | public static let Porter = Tokenizer("porter")
95 |
/host/spi-builder-workspace/Sources/SQLiteDB/Extensions/FTS4.swift:94:23: warning: static property 'Porter' is not concurrency-safe because non-'Sendable' type 'Tokenizer' may have shared mutable state; this is an error in the Swift 6 language mode
89 |
90 | // swiftlint:disable identifier_name
91 | public struct Tokenizer {
| `- note: consider making struct 'Tokenizer' conform to the 'Sendable' protocol
92 |
93 | public static let Simple = Tokenizer("simple")
94 | public static let Porter = Tokenizer("porter")
| |- warning: static property 'Porter' is not concurrency-safe because non-'Sendable' type 'Tokenizer' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'Porter' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
95 |
96 | public static func Unicode61(removeDiacritics: Bool? = nil,
[527/531] Compiling SQLiteDB FTS4.swift
/host/spi-builder-workspace/Sources/SQLiteDB/Core/Value.swift:108:23: warning: static property 'declaredDatatype' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
106 | extension Bool: Binding, Value {
107 |
108 | public static var declaredDatatype = Int64.declaredDatatype
| |- warning: static property 'declaredDatatype' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'declaredDatatype' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'declaredDatatype' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
109 |
110 | public static func fromDatatypeValue(_ datatypeValue: Int64) -> Bool {
/host/spi-builder-workspace/Sources/SQLiteDB/Core/Value.swift:122:23: warning: static property 'declaredDatatype' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
120 | extension Int: Number, Value {
121 |
122 | public static var declaredDatatype = Int64.declaredDatatype
| |- warning: static property 'declaredDatatype' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'declaredDatatype' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'declaredDatatype' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
123 |
124 | public static func fromDatatypeValue(_ datatypeValue: Int64) -> Int {
/host/spi-builder-workspace/Sources/SQLiteDB/Extensions/FTS4.swift:93:23: warning: static property 'Simple' is not concurrency-safe because non-'Sendable' type 'Tokenizer' may have shared mutable state; this is an error in the Swift 6 language mode
89 |
90 | // swiftlint:disable identifier_name
91 | public struct Tokenizer {
| `- note: consider making struct 'Tokenizer' conform to the 'Sendable' protocol
92 |
93 | public static let Simple = Tokenizer("simple")
| |- warning: static property 'Simple' is not concurrency-safe because non-'Sendable' type 'Tokenizer' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'Simple' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
94 | public static let Porter = Tokenizer("porter")
95 |
/host/spi-builder-workspace/Sources/SQLiteDB/Extensions/FTS4.swift:94:23: warning: static property 'Porter' is not concurrency-safe because non-'Sendable' type 'Tokenizer' may have shared mutable state; this is an error in the Swift 6 language mode
89 |
90 | // swiftlint:disable identifier_name
91 | public struct Tokenizer {
| `- note: consider making struct 'Tokenizer' conform to the 'Sendable' protocol
92 |
93 | public static let Simple = Tokenizer("simple")
94 | public static let Porter = Tokenizer("porter")
| |- warning: static property 'Porter' is not concurrency-safe because non-'Sendable' type 'Tokenizer' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'Porter' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
95 |
96 | public static func Unicode61(removeDiacritics: Bool? = nil,
[528/531] Compiling SQLiteDB Query.swift
[529/531] Compiling SQLiteDB Schema.swift
[530/531] Compiling SQLiteDB Setter.swift
[531/531] Compiling SQLiteDB WindowFunctions.swift
Build complete! (19.16s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "swift-sqlcipher",
"name" : "swift-sqlcipher",
"path" : "/host/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "13.0"
},
{
"name" : "macos",
"version" : "10.13"
},
{
"name" : "watchos",
"version" : "4.0"
},
{
"name" : "tvos",
"version" : "12.0"
},
{
"name" : "visionos",
"version" : "1.0"
}
],
"products" : [
{
"name" : "SQLiteDB",
"targets" : [
"SQLiteDB"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "SQLCipher",
"targets" : [
"SQLCipher"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "SQLiteDBTests",
"module_type" : "SwiftTarget",
"name" : "SQLiteDBTests",
"path" : "Tests/SQLiteDBTests",
"resources" : [
{
"path" : "/host/spi-builder-workspace/Tests/SQLiteDBTests/Resources/encrypted-3.x.sqlite",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Tests/SQLiteDBTests/Resources/encrypted-4.x.sqlite",
"rule" : {
"process" : {
}
}
},
{
"path" : "/host/spi-builder-workspace/Tests/SQLiteDBTests/Resources/test.sqlite",
"rule" : {
"process" : {
}
}
}
],
"sources" : [
"Core/BlobTests.swift",
"Core/Connection+AttachTests.swift",
"Core/Connection+PragmaTests.swift",
"Core/ConnectionTests.swift",
"Core/CoreFunctionsTests.swift",
"Core/ResultTests.swift",
"Core/StatementTests.swift",
"Core/ValueTests.swift",
"Extensions/CipherTests.swift",
"Extensions/FTS4Tests.swift",
"Extensions/FTS5Tests.swift",
"Extensions/FTSIntegrationTests.swift",
"Extensions/RTreeTests.swift",
"Fixtures.swift",
"FoundationTests.swift",
"Schema/Connection+SchemaTests.swift",
"Schema/SchemaChangerTests.swift",
"Schema/SchemaDefinitionsTests.swift",
"Schema/SchemaReaderTests.swift",
"Schema/SchemaTests.swift",
"TestHelpers.swift",
"Typed/AggregateFunctionsTests.swift",
"Typed/CustomAggregationTests.swift",
"Typed/CustomFunctionsTests.swift",
"Typed/DateAndTimeFunctionTests.swift",
"Typed/ExpressionTests.swift",
"Typed/OperatorsTests.swift",
"Typed/QueryIntegrationTests.swift",
"Typed/QueryTests.swift",
"Typed/RowTests.swift",
"Typed/SelectTests.swift",
"Typed/SetterTests.swift",
"Typed/WindowFunctionsTests.swift"
],
"target_dependencies" : [
"SQLiteDB"
],
"type" : "test"
},
{
"c99name" : "SQLiteDB",
"module_type" : "SwiftTarget",
"name" : "SQLiteDB",
"path" : "Sources/SQLiteDB",
"product_memberships" : [
"SQLiteDB"
],
"sources" : [
"Core/Backup.swift",
"Core/Blob.swift",
"Core/Connection+Aggregation.swift",
"Core/Connection+Attach.swift",
"Core/Connection+Pragmas.swift",
"Core/Connection.swift",
"Core/Errors.swift",
"Core/Result.swift",
"Core/SQLiteFeature.swift",
"Core/SQLiteVersion.swift",
"Core/Statement.swift",
"Core/URIQueryParameter.swift",
"Core/Value.swift",
"Extensions/Cipher.swift",
"Extensions/FTS4.swift",
"Extensions/FTS5.swift",
"Extensions/RTree.swift",
"Foundation.swift",
"Helpers.swift",
"Schema/Connection+Schema.swift",
"Schema/SchemaChanger.swift",
"Schema/SchemaDefinitions.swift",
"Schema/SchemaReader.swift",
"Typed/AggregateFunctions.swift",
"Typed/Coding.swift",
"Typed/Collation.swift",
"Typed/CoreFunctions.swift",
"Typed/CustomFunctions.swift",
"Typed/DateAndTimeFunctions.swift",
"Typed/Expression.swift",
"Typed/Operators.swift",
"Typed/Query+with.swift",
"Typed/Query.swift",
"Typed/Schema.swift",
"Typed/Setter.swift",
"Typed/WindowFunctions.swift"
],
"target_dependencies" : [
"SQLCipher"
],
"type" : "library"
},
{
"c99name" : "SQLCipher",
"module_type" : "ClangTarget",
"name" : "SQLCipher",
"path" : "Sources/SQLCipher",
"product_memberships" : [
"SQLiteDB",
"SQLCipher"
],
"sources" : [
"libtomcrypt/ciphers/aes/aes.c",
"libtomcrypt/ciphers/aes/aes_desc.c",
"libtomcrypt/ciphers/aes/aes_tab.c",
"libtomcrypt/ciphers/aes/aesni.c",
"libtomcrypt/ciphers/anubis.c",
"libtomcrypt/ciphers/blowfish.c",
"libtomcrypt/ciphers/camellia.c",
"libtomcrypt/ciphers/cast5.c",
"libtomcrypt/ciphers/des.c",
"libtomcrypt/ciphers/idea.c",
"libtomcrypt/ciphers/kasumi.c",
"libtomcrypt/ciphers/khazad.c",
"libtomcrypt/ciphers/kseed.c",
"libtomcrypt/ciphers/multi2.c",
"libtomcrypt/ciphers/noekeon.c",
"libtomcrypt/ciphers/rc2.c",
"libtomcrypt/ciphers/rc5.c",
"libtomcrypt/ciphers/rc6.c",
"libtomcrypt/ciphers/safer/safer.c",
"libtomcrypt/ciphers/safer/safer_tab.c",
"libtomcrypt/ciphers/safer/saferp.c",
"libtomcrypt/ciphers/serpent.c",
"libtomcrypt/ciphers/skipjack.c",
"libtomcrypt/ciphers/tea.c",
"libtomcrypt/ciphers/twofish/twofish.c",
"libtomcrypt/ciphers/twofish/twofish_tab.c",
"libtomcrypt/ciphers/xtea.c",
"libtomcrypt/encauth/ccm/ccm_add_aad.c",
"libtomcrypt/encauth/ccm/ccm_add_nonce.c",
"libtomcrypt/encauth/ccm/ccm_done.c",
"libtomcrypt/encauth/ccm/ccm_init.c",
"libtomcrypt/encauth/ccm/ccm_memory.c",
"libtomcrypt/encauth/ccm/ccm_process.c",
"libtomcrypt/encauth/ccm/ccm_reset.c",
"libtomcrypt/encauth/ccm/ccm_test.c",
"libtomcrypt/encauth/chachapoly/chacha20poly1305_add_aad.c",
"libtomcrypt/encauth/chachapoly/chacha20poly1305_decrypt.c",
"libtomcrypt/encauth/chachapoly/chacha20poly1305_done.c",
"libtomcrypt/encauth/chachapoly/chacha20poly1305_encrypt.c",
"libtomcrypt/encauth/chachapoly/chacha20poly1305_init.c",
"libtomcrypt/encauth/chachapoly/chacha20poly1305_memory.c",
"libtomcrypt/encauth/chachapoly/chacha20poly1305_setiv.c",
"libtomcrypt/encauth/chachapoly/chacha20poly1305_setiv_rfc7905.c",
"libtomcrypt/encauth/chachapoly/chacha20poly1305_test.c",
"libtomcrypt/encauth/eax/eax_addheader.c",
"libtomcrypt/encauth/eax/eax_decrypt.c",
"libtomcrypt/encauth/eax/eax_decrypt_verify_memory.c",
"libtomcrypt/encauth/eax/eax_done.c",
"libtomcrypt/encauth/eax/eax_encrypt.c",
"libtomcrypt/encauth/eax/eax_encrypt_authenticate_memory.c",
"libtomcrypt/encauth/eax/eax_init.c",
"libtomcrypt/encauth/eax/eax_test.c",
"libtomcrypt/encauth/gcm/gcm_add_aad.c",
"libtomcrypt/encauth/gcm/gcm_add_iv.c",
"libtomcrypt/encauth/gcm/gcm_done.c",
"libtomcrypt/encauth/gcm/gcm_gf_mult.c",
"libtomcrypt/encauth/gcm/gcm_init.c",
"libtomcrypt/encauth/gcm/gcm_memory.c",
"libtomcrypt/encauth/gcm/gcm_mult_h.c",
"libtomcrypt/encauth/gcm/gcm_process.c",
"libtomcrypt/encauth/gcm/gcm_reset.c",
"libtomcrypt/encauth/gcm/gcm_test.c",
"libtomcrypt/encauth/ocb/ocb_decrypt.c",
"libtomcrypt/encauth/ocb/ocb_decrypt_verify_memory.c",
"libtomcrypt/encauth/ocb/ocb_done_decrypt.c",
"libtomcrypt/encauth/ocb/ocb_done_encrypt.c",
"libtomcrypt/encauth/ocb/ocb_encrypt.c",
"libtomcrypt/encauth/ocb/ocb_encrypt_authenticate_memory.c",
"libtomcrypt/encauth/ocb/ocb_init.c",
"libtomcrypt/encauth/ocb/ocb_ntz.c",
"libtomcrypt/encauth/ocb/ocb_shift_xor.c",
"libtomcrypt/encauth/ocb/ocb_test.c",
"libtomcrypt/encauth/ocb/s_ocb_done.c",
"libtomcrypt/encauth/ocb3/ocb3_add_aad.c",
"libtomcrypt/encauth/ocb3/ocb3_decrypt.c",
"libtomcrypt/encauth/ocb3/ocb3_decrypt_last.c",
"libtomcrypt/encauth/ocb3/ocb3_decrypt_verify_memory.c",
"libtomcrypt/encauth/ocb3/ocb3_done.c",
"libtomcrypt/encauth/ocb3/ocb3_encrypt.c",
"libtomcrypt/encauth/ocb3/ocb3_encrypt_authenticate_memory.c",
"libtomcrypt/encauth/ocb3/ocb3_encrypt_last.c",
"libtomcrypt/encauth/ocb3/ocb3_init.c",
"libtomcrypt/encauth/ocb3/ocb3_int_ntz.c",
"libtomcrypt/encauth/ocb3/ocb3_int_xor_blocks.c",
"libtomcrypt/encauth/ocb3/ocb3_test.c",
"libtomcrypt/hashes/blake2b.c",
"libtomcrypt/hashes/blake2s.c",
"libtomcrypt/hashes/chc/chc.c",
"libtomcrypt/hashes/helper/hash_file.c",
"libtomcrypt/hashes/helper/hash_filehandle.c",
"libtomcrypt/hashes/helper/hash_memory.c",
"libtomcrypt/hashes/helper/hash_memory_multi.c",
"libtomcrypt/hashes/md2.c",
"libtomcrypt/hashes/md4.c",
"libtomcrypt/hashes/md5.c",
"libtomcrypt/hashes/rmd128.c",
"libtomcrypt/hashes/rmd160.c",
"libtomcrypt/hashes/rmd256.c",
"libtomcrypt/hashes/rmd320.c",
"libtomcrypt/hashes/sha1.c",
"libtomcrypt/hashes/sha2/sha224.c",
"libtomcrypt/hashes/sha2/sha256.c",
"libtomcrypt/hashes/sha2/sha384.c",
"libtomcrypt/hashes/sha2/sha512.c",
"libtomcrypt/hashes/sha2/sha512_224.c",
"libtomcrypt/hashes/sha2/sha512_256.c",
"libtomcrypt/hashes/sha3.c",
"libtomcrypt/hashes/sha3_test.c",
"libtomcrypt/hashes/tiger.c",
"libtomcrypt/hashes/whirl/whirl.c",
"libtomcrypt/hashes/whirl/whirltab.c",
"libtomcrypt/mac/blake2/blake2bmac.c",
"libtomcrypt/mac/blake2/blake2bmac_file.c",
"libtomcrypt/mac/blake2/blake2bmac_memory.c",
"libtomcrypt/mac/blake2/blake2bmac_memory_multi.c",
"libtomcrypt/mac/blake2/blake2bmac_test.c",
"libtomcrypt/mac/blake2/blake2smac.c",
"libtomcrypt/mac/blake2/blake2smac_file.c",
"libtomcrypt/mac/blake2/blake2smac_memory.c",
"libtomcrypt/mac/blake2/blake2smac_memory_multi.c",
"libtomcrypt/mac/blake2/blake2smac_test.c",
"libtomcrypt/mac/f9/f9_done.c",
"libtomcrypt/mac/f9/f9_file.c",
"libtomcrypt/mac/f9/f9_init.c",
"libtomcrypt/mac/f9/f9_memory.c",
"libtomcrypt/mac/f9/f9_memory_multi.c",
"libtomcrypt/mac/f9/f9_process.c",
"libtomcrypt/mac/f9/f9_test.c",
"libtomcrypt/mac/hmac/hmac_done.c",
"libtomcrypt/mac/hmac/hmac_file.c",
"libtomcrypt/mac/hmac/hmac_init.c",
"libtomcrypt/mac/hmac/hmac_memory.c",
"libtomcrypt/mac/hmac/hmac_memory_multi.c",
"libtomcrypt/mac/hmac/hmac_process.c",
"libtomcrypt/mac/hmac/hmac_test.c",
"libtomcrypt/mac/omac/omac_done.c",
"libtomcrypt/mac/omac/omac_file.c",
"libtomcrypt/mac/omac/omac_init.c",
"libtomcrypt/mac/omac/omac_memory.c",
"libtomcrypt/mac/omac/omac_memory_multi.c",
"libtomcrypt/mac/omac/omac_process.c",
"libtomcrypt/mac/omac/omac_test.c",
"libtomcrypt/mac/pelican/pelican.c",
"libtomcrypt/mac/pelican/pelican_memory.c",
"libtomcrypt/mac/pelican/pelican_test.c",
"libtomcrypt/mac/pmac/pmac_done.c",
"libtomcrypt/mac/pmac/pmac_file.c",
"libtomcrypt/mac/pmac/pmac_init.c",
"libtomcrypt/mac/pmac/pmac_memory.c",
"libtomcrypt/mac/pmac/pmac_memory_multi.c",
"libtomcrypt/mac/pmac/pmac_ntz.c",
"libtomcrypt/mac/pmac/pmac_process.c",
"libtomcrypt/mac/pmac/pmac_shift_xor.c",
"libtomcrypt/mac/pmac/pmac_test.c",
"libtomcrypt/mac/poly1305/poly1305.c",
"libtomcrypt/mac/poly1305/poly1305_file.c",
"libtomcrypt/mac/poly1305/poly1305_memory.c",
"libtomcrypt/mac/poly1305/poly1305_memory_multi.c",
"libtomcrypt/mac/poly1305/poly1305_test.c",
"libtomcrypt/mac/xcbc/xcbc_done.c",
"libtomcrypt/mac/xcbc/xcbc_file.c",
"libtomcrypt/mac/xcbc/xcbc_init.c",
"libtomcrypt/mac/xcbc/xcbc_memory.c",
"libtomcrypt/mac/xcbc/xcbc_memory_multi.c",
"libtomcrypt/mac/xcbc/xcbc_process.c",
"libtomcrypt/mac/xcbc/xcbc_test.c",
"libtomcrypt/math/fp/ltc_ecc_fp_mulmod.c",
"libtomcrypt/math/gmp_desc.c",
"libtomcrypt/math/ltm_desc.c",
"libtomcrypt/math/multi.c",
"libtomcrypt/math/radix_to_bin.c",
"libtomcrypt/math/rand_bn.c",
"libtomcrypt/math/rand_prime.c",
"libtomcrypt/math/tfm_desc.c",
"libtomcrypt/misc/adler32.c",
"libtomcrypt/misc/base16/base16_decode.c",
"libtomcrypt/misc/base16/base16_encode.c",
"libtomcrypt/misc/base32/base32_decode.c",
"libtomcrypt/misc/base32/base32_encode.c",
"libtomcrypt/misc/base64/base64_decode.c",
"libtomcrypt/misc/base64/base64_encode.c",
"libtomcrypt/misc/bcrypt/bcrypt.c",
"libtomcrypt/misc/burn_stack.c",
"libtomcrypt/misc/compare_testvector.c",
"libtomcrypt/misc/copy_or_zeromem.c",
"libtomcrypt/misc/crc32.c",
"libtomcrypt/misc/crypt/crypt.c",
"libtomcrypt/misc/crypt/crypt_argchk.c",
"libtomcrypt/misc/crypt/crypt_cipher_descriptor.c",
"libtomcrypt/misc/crypt/crypt_cipher_is_valid.c",
"libtomcrypt/misc/crypt/crypt_constants.c",
"libtomcrypt/misc/crypt/crypt_find_cipher.c",
"libtomcrypt/misc/crypt/crypt_find_cipher_any.c",
"libtomcrypt/misc/crypt/crypt_find_cipher_id.c",
"libtomcrypt/misc/crypt/crypt_find_hash.c",
"libtomcrypt/misc/crypt/crypt_find_hash_any.c",
"libtomcrypt/misc/crypt/crypt_find_hash_id.c",
"libtomcrypt/misc/crypt/crypt_find_hash_oid.c",
"libtomcrypt/misc/crypt/crypt_find_prng.c",
"libtomcrypt/misc/crypt/crypt_fsa.c",
"libtomcrypt/misc/crypt/crypt_hash_descriptor.c",
"libtomcrypt/misc/crypt/crypt_hash_is_valid.c",
"libtomcrypt/misc/crypt/crypt_inits.c",
"libtomcrypt/misc/crypt/crypt_ltc_mp_descriptor.c",
"libtomcrypt/misc/crypt/crypt_prng_descriptor.c",
"libtomcrypt/misc/crypt/crypt_prng_is_valid.c",
"libtomcrypt/misc/crypt/crypt_prng_rng_descriptor.c",
"libtomcrypt/misc/crypt/crypt_register_all_ciphers.c",
"libtomcrypt/misc/crypt/crypt_register_all_hashes.c",
"libtomcrypt/misc/crypt/crypt_register_all_prngs.c",
"libtomcrypt/misc/crypt/crypt_register_cipher.c",
"libtomcrypt/misc/crypt/crypt_register_hash.c",
"libtomcrypt/misc/crypt/crypt_register_prng.c",
"libtomcrypt/misc/crypt/crypt_sizes.c",
"libtomcrypt/misc/crypt/crypt_unregister_cipher.c",
"libtomcrypt/misc/crypt/crypt_unregister_hash.c",
"libtomcrypt/misc/crypt/crypt_unregister_prng.c",
"libtomcrypt/misc/error_to_string.c",
"libtomcrypt/misc/hkdf/hkdf.c",
"libtomcrypt/misc/hkdf/hkdf_test.c",
"libtomcrypt/misc/mem_neq.c",
"libtomcrypt/misc/padding/padding_depad.c",
"libtomcrypt/misc/padding/padding_pad.c",
"libtomcrypt/misc/pbes/pbes.c",
"libtomcrypt/misc/pbes/pbes1.c",
"libtomcrypt/misc/pbes/pbes2.c",
"libtomcrypt/misc/pkcs12/pkcs12_kdf.c",
"libtomcrypt/misc/pkcs12/pkcs12_utf8_to_utf16.c",
"libtomcrypt/misc/pkcs5/pkcs_5_1.c",
"libtomcrypt/misc/pkcs5/pkcs_5_2.c",
"libtomcrypt/misc/pkcs5/pkcs_5_test.c",
"libtomcrypt/misc/ssh/ssh_decode_sequence_multi.c",
"libtomcrypt/misc/ssh/ssh_encode_sequence_multi.c",
"libtomcrypt/misc/zeromem.c",
"libtomcrypt/modes/cbc/cbc_decrypt.c",
"libtomcrypt/modes/cbc/cbc_done.c",
"libtomcrypt/modes/cbc/cbc_encrypt.c",
"libtomcrypt/modes/cbc/cbc_getiv.c",
"libtomcrypt/modes/cbc/cbc_setiv.c",
"libtomcrypt/modes/cbc/cbc_start.c",
"libtomcrypt/modes/cfb/cfb_decrypt.c",
"libtomcrypt/modes/cfb/cfb_done.c",
"libtomcrypt/modes/cfb/cfb_encrypt.c",
"libtomcrypt/modes/cfb/cfb_getiv.c",
"libtomcrypt/modes/cfb/cfb_setiv.c",
"libtomcrypt/modes/cfb/cfb_start.c",
"libtomcrypt/modes/ctr/ctr_decrypt.c",
"libtomcrypt/modes/ctr/ctr_done.c",
"libtomcrypt/modes/ctr/ctr_encrypt.c",
"libtomcrypt/modes/ctr/ctr_getiv.c",
"libtomcrypt/modes/ctr/ctr_setiv.c",
"libtomcrypt/modes/ctr/ctr_start.c",
"libtomcrypt/modes/ctr/ctr_test.c",
"libtomcrypt/modes/ecb/ecb_decrypt.c",
"libtomcrypt/modes/ecb/ecb_done.c",
"libtomcrypt/modes/ecb/ecb_encrypt.c",
"libtomcrypt/modes/ecb/ecb_start.c",
"libtomcrypt/modes/f8/f8_decrypt.c",
"libtomcrypt/modes/f8/f8_done.c",
"libtomcrypt/modes/f8/f8_encrypt.c",
"libtomcrypt/modes/f8/f8_getiv.c",
"libtomcrypt/modes/f8/f8_setiv.c",
"libtomcrypt/modes/f8/f8_start.c",
"libtomcrypt/modes/f8/f8_test_mode.c",
"libtomcrypt/modes/lrw/lrw_decrypt.c",
"libtomcrypt/modes/lrw/lrw_done.c",
"libtomcrypt/modes/lrw/lrw_encrypt.c",
"libtomcrypt/modes/lrw/lrw_getiv.c",
"libtomcrypt/modes/lrw/lrw_process.c",
"libtomcrypt/modes/lrw/lrw_setiv.c",
"libtomcrypt/modes/lrw/lrw_start.c",
"libtomcrypt/modes/lrw/lrw_test.c",
"libtomcrypt/modes/ofb/ofb_decrypt.c",
"libtomcrypt/modes/ofb/ofb_done.c",
"libtomcrypt/modes/ofb/ofb_encrypt.c",
"libtomcrypt/modes/ofb/ofb_getiv.c",
"libtomcrypt/modes/ofb/ofb_setiv.c",
"libtomcrypt/modes/ofb/ofb_start.c",
"libtomcrypt/modes/xts/xts_decrypt.c",
"libtomcrypt/modes/xts/xts_done.c",
"libtomcrypt/modes/xts/xts_encrypt.c",
"libtomcrypt/modes/xts/xts_init.c",
"libtomcrypt/modes/xts/xts_mult_x.c",
"libtomcrypt/modes/xts/xts_test.c",
"libtomcrypt/pk/asn1/der/bit/der_decode_bit_string.c",
"libtomcrypt/pk/asn1/der/bit/der_decode_raw_bit_string.c",
"libtomcrypt/pk/asn1/der/bit/der_encode_bit_string.c",
"libtomcrypt/pk/asn1/der/bit/der_encode_raw_bit_string.c",
"libtomcrypt/pk/asn1/der/bit/der_length_bit_string.c",
"libtomcrypt/pk/asn1/der/boolean/der_decode_boolean.c",
"libtomcrypt/pk/asn1/der/boolean/der_encode_boolean.c",
"libtomcrypt/pk/asn1/der/boolean/der_length_boolean.c",
"libtomcrypt/pk/asn1/der/choice/der_decode_choice.c",
"libtomcrypt/pk/asn1/der/custom_type/der_decode_custom_type.c",
"libtomcrypt/pk/asn1/der/custom_type/der_encode_custom_type.c",
"libtomcrypt/pk/asn1/der/custom_type/der_length_custom_type.c",
"libtomcrypt/pk/asn1/der/general/der_asn1_maps.c",
"libtomcrypt/pk/asn1/der/general/der_decode_asn1_identifier.c",
"libtomcrypt/pk/asn1/der/general/der_decode_asn1_length.c",
"libtomcrypt/pk/asn1/der/general/der_encode_asn1_identifier.c",
"libtomcrypt/pk/asn1/der/general/der_encode_asn1_length.c",
"libtomcrypt/pk/asn1/der/general/der_length_asn1_identifier.c",
"libtomcrypt/pk/asn1/der/general/der_length_asn1_length.c",
"libtomcrypt/pk/asn1/der/generalizedtime/der_decode_generalizedtime.c",
"libtomcrypt/pk/asn1/der/generalizedtime/der_encode_generalizedtime.c",
"libtomcrypt/pk/asn1/der/generalizedtime/der_length_generalizedtime.c",
"libtomcrypt/pk/asn1/der/ia5/der_decode_ia5_string.c",
"libtomcrypt/pk/asn1/der/ia5/der_encode_ia5_string.c",
"libtomcrypt/pk/asn1/der/ia5/der_length_ia5_string.c",
"libtomcrypt/pk/asn1/der/integer/der_decode_integer.c",
"libtomcrypt/pk/asn1/der/integer/der_encode_integer.c",
"libtomcrypt/pk/asn1/der/integer/der_length_integer.c",
"libtomcrypt/pk/asn1/der/object_identifier/der_decode_object_identifier.c",
"libtomcrypt/pk/asn1/der/object_identifier/der_encode_object_identifier.c",
"libtomcrypt/pk/asn1/der/object_identifier/der_length_object_identifier.c",
"libtomcrypt/pk/asn1/der/octet/der_decode_octet_string.c",
"libtomcrypt/pk/asn1/der/octet/der_encode_octet_string.c",
"libtomcrypt/pk/asn1/der/octet/der_length_octet_string.c",
"libtomcrypt/pk/asn1/der/printable_string/der_decode_printable_string.c",
"libtomcrypt/pk/asn1/der/printable_string/der_encode_printable_string.c",
"libtomcrypt/pk/asn1/der/printable_string/der_length_printable_string.c",
"libtomcrypt/pk/asn1/der/sequence/der_decode_sequence_ex.c",
"libtomcrypt/pk/asn1/der/sequence/der_decode_sequence_flexi.c",
"libtomcrypt/pk/asn1/der/sequence/der_decode_sequence_multi.c",
"libtomcrypt/pk/asn1/der/sequence/der_encode_sequence_ex.c",
"libtomcrypt/pk/asn1/der/sequence/der_encode_sequence_multi.c",
"libtomcrypt/pk/asn1/der/sequence/der_length_sequence.c",
"libtomcrypt/pk/asn1/der/sequence/der_sequence_free.c",
"libtomcrypt/pk/asn1/der/sequence/der_sequence_shrink.c",
"libtomcrypt/pk/asn1/der/set/der_encode_set.c",
"libtomcrypt/pk/asn1/der/set/der_encode_setof.c",
"libtomcrypt/pk/asn1/der/short_integer/der_decode_short_integer.c",
"libtomcrypt/pk/asn1/der/short_integer/der_encode_short_integer.c",
"libtomcrypt/pk/asn1/der/short_integer/der_length_short_integer.c",
"libtomcrypt/pk/asn1/der/teletex_string/der_decode_teletex_string.c",
"libtomcrypt/pk/asn1/der/teletex_string/der_length_teletex_string.c",
"libtomcrypt/pk/asn1/der/utctime/der_decode_utctime.c",
"libtomcrypt/pk/asn1/der/utctime/der_encode_utctime.c",
"libtomcrypt/pk/asn1/der/utctime/der_length_utctime.c",
"libtomcrypt/pk/asn1/der/utf8/der_decode_utf8_string.c",
"libtomcrypt/pk/asn1/der/utf8/der_encode_utf8_string.c",
"libtomcrypt/pk/asn1/der/utf8/der_length_utf8_string.c",
"libtomcrypt/pk/asn1/oid/pk_get_oid.c",
"libtomcrypt/pk/asn1/oid/pk_oid_cmp.c",
"libtomcrypt/pk/asn1/oid/pk_oid_str.c",
"libtomcrypt/pk/asn1/pkcs8/pkcs8_decode_flexi.c",
"libtomcrypt/pk/asn1/x509/x509_decode_public_key_from_certificate.c",
"libtomcrypt/pk/asn1/x509/x509_decode_subject_public_key_info.c",
"libtomcrypt/pk/asn1/x509/x509_encode_subject_public_key_info.c",
"libtomcrypt/pk/dh/dh.c",
"libtomcrypt/pk/dh/dh_check_pubkey.c",
"libtomcrypt/pk/dh/dh_export.c",
"libtomcrypt/pk/dh/dh_export_key.c",
"libtomcrypt/pk/dh/dh_free.c",
"libtomcrypt/pk/dh/dh_generate_key.c",
"libtomcrypt/pk/dh/dh_import.c",
"libtomcrypt/pk/dh/dh_set.c",
"libtomcrypt/pk/dh/dh_set_pg_dhparam.c",
"libtomcrypt/pk/dh/dh_shared_secret.c",
"libtomcrypt/pk/dsa/dsa_decrypt_key.c",
"libtomcrypt/pk/dsa/dsa_encrypt_key.c",
"libtomcrypt/pk/dsa/dsa_export.c",
"libtomcrypt/pk/dsa/dsa_free.c",
"libtomcrypt/pk/dsa/dsa_generate_key.c",
"libtomcrypt/pk/dsa/dsa_generate_pqg.c",
"libtomcrypt/pk/dsa/dsa_import.c",
"libtomcrypt/pk/dsa/dsa_make_key.c",
"libtomcrypt/pk/dsa/dsa_set.c",
"libtomcrypt/pk/dsa/dsa_set_pqg_dsaparam.c",
"libtomcrypt/pk/dsa/dsa_shared_secret.c",
"libtomcrypt/pk/dsa/dsa_sign_hash.c",
"libtomcrypt/pk/dsa/dsa_verify_hash.c",
"libtomcrypt/pk/dsa/dsa_verify_key.c",
"libtomcrypt/pk/ec25519/ec25519_crypto_ctx.c",
"libtomcrypt/pk/ec25519/ec25519_export.c",
"libtomcrypt/pk/ec25519/ec25519_import_pkcs8.c",
"libtomcrypt/pk/ec25519/tweetnacl.c",
"libtomcrypt/pk/ecc/ecc.c",
"libtomcrypt/pk/ecc/ecc_ansi_x963_export.c",
"libtomcrypt/pk/ecc/ecc_ansi_x963_import.c",
"libtomcrypt/pk/ecc/ecc_decrypt_key.c",
"libtomcrypt/pk/ecc/ecc_encrypt_key.c",
"libtomcrypt/pk/ecc/ecc_export.c",
"libtomcrypt/pk/ecc/ecc_export_openssl.c",
"libtomcrypt/pk/ecc/ecc_find_curve.c",
"libtomcrypt/pk/ecc/ecc_free.c",
"libtomcrypt/pk/ecc/ecc_get_key.c",
"libtomcrypt/pk/ecc/ecc_get_oid_str.c",
"libtomcrypt/pk/ecc/ecc_get_size.c",
"libtomcrypt/pk/ecc/ecc_import.c",
"libtomcrypt/pk/ecc/ecc_import_openssl.c",
"libtomcrypt/pk/ecc/ecc_import_pkcs8.c",
"libtomcrypt/pk/ecc/ecc_import_x509.c",
"libtomcrypt/pk/ecc/ecc_make_key.c",
"libtomcrypt/pk/ecc/ecc_recover_key.c",
"libtomcrypt/pk/ecc/ecc_set_curve.c",
"libtomcrypt/pk/ecc/ecc_set_curve_internal.c",
"libtomcrypt/pk/ecc/ecc_set_key.c",
"libtomcrypt/pk/ecc/ecc_shared_secret.c",
"libtomcrypt/pk/ecc/ecc_sign_hash.c",
"libtomcrypt/pk/ecc/ecc_sizes.c",
"libtomcrypt/pk/ecc/ecc_ssh_ecdsa_encode_name.c",
"libtomcrypt/pk/ecc/ecc_verify_hash.c",
"libtomcrypt/pk/ecc/ltc_ecc_export_point.c",
"libtomcrypt/pk/ecc/ltc_ecc_import_point.c",
"libtomcrypt/pk/ecc/ltc_ecc_is_point.c",
"libtomcrypt/pk/ecc/ltc_ecc_is_point_at_infinity.c",
"libtomcrypt/pk/ecc/ltc_ecc_map.c",
"libtomcrypt/pk/ecc/ltc_ecc_mul2add.c",
"libtomcrypt/pk/ecc/ltc_ecc_mulmod.c",
"libtomcrypt/pk/ecc/ltc_ecc_mulmod_timing.c",
"libtomcrypt/pk/ecc/ltc_ecc_points.c",
"libtomcrypt/pk/ecc/ltc_ecc_projective_add_point.c",
"libtomcrypt/pk/ecc/ltc_ecc_projective_dbl_point.c",
"libtomcrypt/pk/ecc/ltc_ecc_verify_key.c",
"libtomcrypt/pk/ed25519/ed25519_export.c",
"libtomcrypt/pk/ed25519/ed25519_import.c",
"libtomcrypt/pk/ed25519/ed25519_import_pkcs8.c",
"libtomcrypt/pk/ed25519/ed25519_import_raw.c",
"libtomcrypt/pk/ed25519/ed25519_import_x509.c",
"libtomcrypt/pk/ed25519/ed25519_make_key.c",
"libtomcrypt/pk/ed25519/ed25519_sign.c",
"libtomcrypt/pk/ed25519/ed25519_verify.c",
"libtomcrypt/pk/pkcs1/pkcs_1_i2osp.c",
"libtomcrypt/pk/pkcs1/pkcs_1_mgf1.c",
"libtomcrypt/pk/pkcs1/pkcs_1_oaep_decode.c",
"libtomcrypt/pk/pkcs1/pkcs_1_oaep_encode.c",
"libtomcrypt/pk/pkcs1/pkcs_1_os2ip.c",
"libtomcrypt/pk/pkcs1/pkcs_1_pss_decode.c",
"libtomcrypt/pk/pkcs1/pkcs_1_pss_encode.c",
"libtomcrypt/pk/pkcs1/pkcs_1_v1_5_decode.c",
"libtomcrypt/pk/pkcs1/pkcs_1_v1_5_encode.c",
"libtomcrypt/pk/rsa/rsa_decrypt_key.c",
"libtomcrypt/pk/rsa/rsa_encrypt_key.c",
"libtomcrypt/pk/rsa/rsa_export.c",
"libtomcrypt/pk/rsa/rsa_exptmod.c",
"libtomcrypt/pk/rsa/rsa_get_size.c",
"libtomcrypt/pk/rsa/rsa_import.c",
"libtomcrypt/pk/rsa/rsa_import_pkcs8.c",
"libtomcrypt/pk/rsa/rsa_import_x509.c",
"libtomcrypt/pk/rsa/rsa_key.c",
"libtomcrypt/pk/rsa/rsa_make_key.c",
"libtomcrypt/pk/rsa/rsa_set.c",
"libtomcrypt/pk/rsa/rsa_sign_hash.c",
"libtomcrypt/pk/rsa/rsa_sign_saltlen_get.c",
"libtomcrypt/pk/rsa/rsa_verify_hash.c",
"libtomcrypt/pk/x25519/x25519_export.c",
"libtomcrypt/pk/x25519/x25519_import.c",
"libtomcrypt/pk/x25519/x25519_import_pkcs8.c",
"libtomcrypt/pk/x25519/x25519_import_raw.c",
"libtomcrypt/pk/x25519/x25519_import_x509.c",
"libtomcrypt/pk/x25519/x25519_make_key.c",
"libtomcrypt/pk/x25519/x25519_shared_secret.c",
"libtomcrypt/prngs/chacha20.c",
"libtomcrypt/prngs/fortuna.c",
"libtomcrypt/prngs/rc4.c",
"libtomcrypt/prngs/rng_get_bytes.c",
"libtomcrypt/prngs/rng_make_prng.c",
"libtomcrypt/prngs/sober128.c",
"libtomcrypt/prngs/sprng.c",
"libtomcrypt/prngs/yarrow.c",
"libtomcrypt/stream/chacha/chacha_crypt.c",
"libtomcrypt/stream/chacha/chacha_done.c",
"libtomcrypt/stream/chacha/chacha_ivctr32.c",
"libtomcrypt/stream/chacha/chacha_ivctr64.c",
"libtomcrypt/stream/chacha/chacha_keystream.c",
"libtomcrypt/stream/chacha/chacha_memory.c",
"libtomcrypt/stream/chacha/chacha_setup.c",
"libtomcrypt/stream/chacha/chacha_test.c",
"libtomcrypt/stream/rabbit/rabbit.c",
"libtomcrypt/stream/rabbit/rabbit_memory.c",
"libtomcrypt/stream/rc4/rc4_stream.c",
"libtomcrypt/stream/rc4/rc4_stream_memory.c",
"libtomcrypt/stream/rc4/rc4_test.c",
"libtomcrypt/stream/salsa20/salsa20_crypt.c",
"libtomcrypt/stream/salsa20/salsa20_done.c",
"libtomcrypt/stream/salsa20/salsa20_ivctr64.c",
"libtomcrypt/stream/salsa20/salsa20_keystream.c",
"libtomcrypt/stream/salsa20/salsa20_memory.c",
"libtomcrypt/stream/salsa20/salsa20_setup.c",
"libtomcrypt/stream/salsa20/salsa20_test.c",
"libtomcrypt/stream/salsa20/xsalsa20_memory.c",
"libtomcrypt/stream/salsa20/xsalsa20_setup.c",
"libtomcrypt/stream/salsa20/xsalsa20_test.c",
"libtomcrypt/stream/sober128/sober128_stream.c",
"libtomcrypt/stream/sober128/sober128_stream_memory.c",
"libtomcrypt/stream/sober128/sober128_test.c",
"libtomcrypt/stream/sober128/sober128tab.c",
"libtomcrypt/stream/sosemanuk/sosemanuk.c",
"libtomcrypt/stream/sosemanuk/sosemanuk_memory.c",
"libtomcrypt/stream/sosemanuk/sosemanuk_test.c",
"sqlite/sqlite3.c"
],
"type" : "library"
}
],
"tools_version" : "5.9"
}
basic-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:3bdcac04179f4ed3e5b8e9dbd6e74bbf5ebc0f4fde48bbaad7d1e5c757e65bcb
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.1-latest
Done.