The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Failed to build ZeeQL3, reference develop (c0ed95), with Swift 6.1 for watchOS using Xcode 16.3 on 15 May 2025 22:10:17 UTC.

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme ZeeQL3 -destination generic/platform=watchOS

Build Log

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Join.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/MirrorHelpers.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Model.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/ModelLoader.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/ModelLoader.swift:1549:39: error: value of type 'XMLNode' has no member 'kind'
    for child in children where child.kind == .text {
                                ~~~~~ ^~~~
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/ModelLoader.swift:1549:48: error: cannot infer contextual base in reference to member 'text'
    for child in children where child.kind == .text {
                                              ~^~~~
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/ModelPattern.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/ModelSQLizer.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Property.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Relationship.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/SQLAttributeChange.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/SQLExpression.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftEmitModule normal arm64 Emitting\ module\ for\ ZeeQL (in target 'ZeeQL' from project 'ZeeQL3')
EmitSwiftModule normal arm64 (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:18:8: warning: associated value 'CannotConstructFetchSpecification' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'AccessDataSourceError.ConstructionErrorReason'; this is an error in the Swift 6 language mode
  case CannotConstructFetchSpecification(ConstructionErrorReason)
       ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:12:15: note: consider making enum 'ConstructionErrorReason' conform to the 'Sendable' protocol
  public enum ConstructionErrorReason: Equatable {
              ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:22:8: warning: associated value 'FetchReturnedMoreThanOneResult(fetchSpecification:firstObject:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any FetchSpecification'; this is an error in the Swift 6 language mode
  case FetchReturnedMoreThanOneResult(fetchSpecification: FetchSpecification,
       ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/FetchSpecification.swift:18:17: note: protocol 'FetchSpecification' does not conform to the 'Sendable' protocol
public protocol FetchSpecification : SmartDescription {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:22:8: warning: associated value 'FetchReturnedMoreThanOneResult(fetchSpecification:firstObject:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any SwiftObject'; this is an error in the Swift 6 language mode
  case FetchReturnedMoreThanOneResult(fetchSpecification: FetchSpecification,
       ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/DataSource.swift:89:17: note: protocol 'SwiftObject' does not conform to the 'Sendable' protocol
public protocol SwiftObject: AnyObject {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:25:8: warning: associated value 'DidNotFindFetchSpecification(name:entity:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any Entity'; this is an error in the Swift 6 language mode
  case DidNotFindFetchSpecification(name: String, entity: Entity)
       ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Entity.swift:20:17: note: protocol 'Entity' does not conform to the 'Sendable' protocol
public protocol Entity: AnyObject, EquatableType, SmartDescription {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:26:8: warning: associated value 'CouldNotResolveBindings(fetchSpecification:bindings:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any FetchSpecification'; this is an error in the Swift 6 language mode
  case CouldNotResolveBindings(fetchSpecification: FetchSpecification,
       ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/FetchSpecification.swift:18:17: note: protocol 'FetchSpecification' does not conform to the 'Sendable' protocol
public protocol FetchSpecification : SmartDescription {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:26:8: warning: associated value 'CouldNotResolveBindings(fetchSpecification:bindings:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
  case CouldNotResolveBindings(fetchSpecification: FetchSpecification,
       ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/ActiveDataSource.swift:225:17: warning: let 'countAttr' is not concurrency-safe because non-'Sendable' type 'any Attribute' may have shared mutable state; this is an error in the Swift 6 language mode
fileprivate let countAttr : Attribute = {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Attribute.swift:39:17: note: protocol 'Attribute' does not conform to the 'Sendable' protocol
public protocol Attribute : Property, SQLValue, ExpressionEvaluation,
                ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/ActiveDataSource.swift:225:17: note: add '@MainActor' to make let 'countAttr' part of global actor 'MainActor'
fileprivate let countAttr : Attribute = {
                ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/ActiveDataSource.swift:225:17: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
fileprivate let countAttr : Attribute = {
                ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorError.swift:19:8: warning: associated value 'FailedToGrabNewPrimaryKey(entity:row:)' of 'Sendable'-conforming enum 'AdaptorChannelError' has non-sendable type 'any Entity'; this is an error in the Swift 6 language mode
  case FailedToGrabNewPrimaryKey(entity: Entity, row: AdaptorRow)
       ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Entity.swift:20:17: note: protocol 'Entity' does not conform to the 'Sendable' protocol
public protocol Entity: AnyObject, EquatableType, SmartDescription {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorError.swift:19:8: warning: associated value 'FailedToGrabNewPrimaryKey(entity:row:)' of 'Sendable'-conforming enum 'AdaptorChannelError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
  case FailedToGrabNewPrimaryKey(entity: Entity, row: AdaptorRow)
       ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorError.swift:24:8: warning: associated value 'FailedToRefetchInsertedRow(entity:row:)' of 'Sendable'-conforming enum 'AdaptorChannelError' has non-sendable type 'any Entity'; this is an error in the Swift 6 language mode
  case FailedToRefetchInsertedRow(entity: Entity?, row: AdaptorRow)
       ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Entity.swift:20:17: note: protocol 'Entity' does not conform to the 'Sendable' protocol
public protocol Entity: AnyObject, EquatableType, SmartDescription {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorError.swift:24:8: warning: associated value 'FailedToRefetchInsertedRow(entity:row:)' of 'Sendable'-conforming enum 'AdaptorChannelError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
  case FailedToRefetchInsertedRow(entity: Entity?, row: AdaptorRow)
       ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorQueryColumnRepresentable.swift:17:8: warning: associated value 'CannotConvertValue' of 'Sendable'-conforming enum 'AdaptorQueryTypeError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
  case CannotConvertValue(Any.Type, Any)
       ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModelDecoder.swift:101:10: warning: associated value 'unexpectedRelationshipType' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
    case unexpectedRelationshipType(Relationship)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Relationship.swift:14:17: note: protocol 'Relationship' does not conform to the 'Sendable' protocol
public protocol Relationship : Property, ExpressionEvaluation,
                ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModelPostProcessor.swift:19:10: warning: associated value 'missingDestinationEntity(relationship:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
    case missingDestinationEntity(relationship: Relationship)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Relationship.swift:14:17: note: protocol 'Relationship' does not conform to the 'Sendable' protocol
public protocol Relationship : Property, ExpressionEvaluation,
                ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModelPostProcessor.swift:20:10: warning: associated value 'reverseRelationshipMissesJoins(relationship:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
    case reverseRelationshipMissesJoins(relationship: Relationship)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Relationship.swift:14:17: note: protocol 'Relationship' does not conform to the 'Sendable' protocol
public protocol Relationship : Property, ExpressionEvaluation,
                ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModelPostProcessor.swift:21:10: warning: associated value 'missingPrimaryKey(entity:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Entity'; this is an error in the Swift 6 language mode
    case missingPrimaryKey(entity: Entity)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Entity.swift:20:17: note: protocol 'Entity' does not conform to the 'Sendable' protocol
public protocol Entity: AnyObject, EquatableType, SmartDescription {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModelPostProcessor.swift:23:10: warning: associated value 'reverseRelationshipHasNoJoins(relationship:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
    case reverseRelationshipHasNoJoins(relationship: Relationship)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Relationship.swift:14:17: note: protocol 'Relationship' does not conform to the 'Sendable' protocol
public protocol Relationship : Property, ExpressionEvaluation,
                ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/CodeRelationship.swift:56:10: warning: associated value 'toManyCouldNotDeriveTargetAttribute(entityName:column:sourceAttribute:destinationEntity:)' of 'Sendable'-conforming enum 'JoinCalculationError' has non-sendable type 'any Attribute'; this is an error in the Swift 6 language mode
    case toManyCouldNotDeriveTargetAttribute(entityName: String,
         ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Attribute.swift:39:17: note: protocol 'Attribute' does not conform to the 'Sendable' protocol
public protocol Attribute : Property, SQLValue, ExpressionEvaluation,
                ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/CodeRelationship.swift:56:10: warning: associated value 'toManyCouldNotDeriveTargetAttribute(entityName:column:sourceAttribute:destinationEntity:)' of 'Sendable'-conforming enum 'JoinCalculationError' has non-sendable type 'any Entity'; this is an error in the Swift 6 language mode
    case toManyCouldNotDeriveTargetAttribute(entityName: String,
         ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Entity.swift:20:17: note: protocol 'Entity' does not conform to the 'Sendable' protocol
public protocol Entity: AnyObject, EquatableType, SmartDescription {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/CodeRelationship.swift:214:17: warning: let 'fakeEntity' is not concurrency-safe because non-'Sendable' type 'ModelEntity' may have shared mutable state; this is an error in the Swift 6 language mode
fileprivate let fakeEntity = ModelEntity(name: "FAKE")
                ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Entity.swift:468:12: note: class 'ModelEntity' does not conform to the 'Sendable' protocol
open class ModelEntity : Entity, Equatable {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/CodeRelationship.swift:214:17: note: add '@MainActor' to make let 'fakeEntity' part of global actor 'MainActor'
fileprivate let fakeEntity = ModelEntity(name: "FAKE")
                ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/CodeRelationship.swift:214:17: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
fileprivate let fakeEntity = ModelEntity(name: "FAKE")
                ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/CodeValueAttribute.swift:169:8: warning: associated value 'CannotSetValue' of 'Sendable'-conforming enum 'CodeValueAttributeError' has non-sendable type 'any Attribute'; this is an error in the Swift 6 language mode
  case CannotSetValue(AttributeValue.Type, Attribute, Any?)
       ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Attribute.swift:39:17: note: protocol 'Attribute' does not conform to the 'Sendable' protocol
public protocol Attribute : Property, SQLValue, ExpressionEvaluation,
                ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/CodeValueAttribute.swift:169:8: warning: associated value 'CannotSetValue' of 'Sendable'-conforming enum 'CodeValueAttributeError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
  case CannotSetValue(AttributeValue.Type, Attribute, Any?)
       ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/DatabaseChannelBase.swift:29:10: warning: associated value 'MissingRelationship' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Entity'; this is an error in the Swift 6 language mode
    case MissingRelationship(Entity, String)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Entity.swift:20:17: note: protocol 'Entity' does not conform to the 'Sendable' protocol
public protocol Entity: AnyObject, EquatableType, SmartDescription {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/DatabaseChannelBase.swift:30:10: warning: associated value 'IncompleteJoin' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Join'; this is an error in the Swift 6 language mode
    case IncompleteJoin(Join)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Join.swift:14:15: note: consider making struct 'Join' conform to the 'Sendable' protocol
public struct Join : Equatable, SmartDescription {
              ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/DatabaseChannelBase.swift:33:10: warning: associated value 'MissingAttributeUsedForLocking' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Attribute'; this is an error in the Swift 6 language mode
    case MissingAttributeUsedForLocking(Attribute)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Attribute.swift:39:17: note: protocol 'Attribute' does not conform to the 'Sendable' protocol
public protocol Attribute : Property, SQLValue, ExpressionEvaluation,
                ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/DatabaseContext.swift:21:10: warning: associated value 'FetchSpecificationHasUnresolvedBindings' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any FetchSpecification'; this is an error in the Swift 6 language mode
    case FetchSpecificationHasUnresolvedBindings(FetchSpecification)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/FetchSpecification.swift:18:17: note: protocol 'FetchSpecification' does not conform to the 'Sendable' protocol
public protocol FetchSpecification : SmartDescription {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/DatabaseObject.swift:164:8: warning: associated value 'ReadOnly' of 'Sendable'-conforming enum 'DatabaseObjectError' has non-sendable type 'any DatabaseObject'; this is an error in the Swift 6 language mode
  case ReadOnly(DatabaseObject)
       ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/DatabaseObject.swift:12:17: note: protocol 'DatabaseObject' does not conform to the 'Sendable' protocol
public protocol DatabaseObject : DatabaseObjectValidation,
                ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/DatabaseObject.swift:165:8: warning: associated value 'NoDatabase' of 'Sendable'-conforming enum 'DatabaseObjectError' has non-sendable type 'any DatabaseObject'; this is an error in the Swift 6 language mode
  case NoDatabase(DatabaseObject)
       ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/DatabaseObject.swift:12:17: note: protocol 'DatabaseObject' does not conform to the 'Sendable' protocol
public protocol DatabaseObject : DatabaseObjectValidation,
                ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/BooleanQualifier.swift:11:21: warning: static property 'trueQualifier' is not concurrency-safe because non-'Sendable' type 'BooleanQualifier' may have shared mutable state; this is an error in the Swift 6 language mode
  public static let trueQualifier  = BooleanQualifier(value: true)
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/BooleanQualifier.swift:9:15: note: consider making struct 'BooleanQualifier' conform to the 'Sendable' protocol
public struct BooleanQualifier : Qualifier, QualifierEvaluation, Equatable {
              ^
                                                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/BooleanQualifier.swift:11:21: note: add '@MainActor' to make static property 'trueQualifier' part of global actor 'MainActor'
  public static let trueQualifier  = BooleanQualifier(value: true)
                    ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/BooleanQualifier.swift:11:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  public static let trueQualifier  = BooleanQualifier(value: true)
                    ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/BooleanQualifier.swift:12:21: warning: static property 'falseQualifier' is not concurrency-safe because non-'Sendable' type 'BooleanQualifier' may have shared mutable state; this is an error in the Swift 6 language mode
  public static let falseQualifier = BooleanQualifier(value: false)
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/BooleanQualifier.swift:9:15: note: consider making struct 'BooleanQualifier' conform to the 'Sendable' protocol
public struct BooleanQualifier : Qualifier, QualifierEvaluation, Equatable {
              ^
                                                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/BooleanQualifier.swift:12:21: note: add '@MainActor' to make static property 'falseQualifier' part of global actor 'MainActor'
  public static let falseQualifier = BooleanQualifier(value: false)
                    ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/BooleanQualifier.swift:12:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  public static let falseQualifier = BooleanQualifier(value: false)
                    ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/ObjectTrackingContext.swift:23:10: warning: associated value 'FetchSpecificationHasUnresolvedBindings' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any FetchSpecification'; this is an error in the Swift 6 language mode
    case FetchSpecificationHasUnresolvedBindings(FetchSpecification)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/FetchSpecification.swift:18:17: note: protocol 'FetchSpecification' does not conform to the 'Sendable' protocol
public protocol FetchSpecification : SmartDescription {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/Logger.swift:60:12: warning: var 'globalZeeQLLogger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public var globalZeeQLLogger : ZeeQLLogger = {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/Logger.swift:60:12: note: convert 'globalZeeQLLogger' to a 'let' constant to make 'Sendable' shared state immutable
public var globalZeeQLLogger : ZeeQLLogger = {
       ~~~ ^
       let
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/Logger.swift:60:12: note: add '@MainActor' to make var 'globalZeeQLLogger' part of global actor 'MainActor'
public var globalZeeQLLogger : ZeeQLLogger = {
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/Logger.swift:60:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public var globalZeeQLLogger : ZeeQLLogger = {
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/Logger.swift:90:17: warning: let 'stderrLogLevel' is not concurrency-safe because non-'Sendable' type 'ZeeQLLoggerLogLevel' may have shared mutable state; this is an error in the Swift 6 language mode
fileprivate let stderrLogLevel : ZeeQLLoggerLogLevel = .Error
                ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/Logger.swift:42:13: note: consider making enum 'ZeeQLLoggerLogLevel' conform to the 'Sendable' protocol
public enum ZeeQLLoggerLogLevel : Int8 { // cannot nest types in generics
            ^
                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/Logger.swift:90:17: note: add '@MainActor' to make let 'stderrLogLevel' part of global actor 'MainActor'
fileprivate let stderrLogLevel : ZeeQLLoggerLogLevel = .Error
                ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/Logger.swift:90:17: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
fileprivate let stderrLogLevel : ZeeQLLoggerLogLevel = .Error
                ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/SimpleKVC.swift:69:10: warning: associated value 'CannotCoerceValueForKey' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
    case CannotCoerceValueForKey(Any.Type, Any?, String)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/SimpleKVC.swift:70:10: warning: associated value 'CannotCoerceValue' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
    case CannotCoerceValue(Any.Type, Any?)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/SQLite3Adaptor/SQLite3Adaptor.swift:84:10: warning: associated value 'OpenFailed(errorCode:message:path:mode:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'SQLite3Adaptor.OpenMode'; this is an error in the Swift 6 language mode
    case OpenFailed(errorCode: Int32, message: String?,
         ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/SQLite3Adaptor/SQLite3Adaptor.swift:88:15: note: consider making enum 'OpenMode' conform to the 'Sendable' protocol
  public enum OpenMode {
              ^
                       : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/SQLite3Adaptor/SQLite3AdaptorChannel.swift:29:10: warning: associated value 'BindFailed' of 'Sendable'-conforming enum 'Error' has non-sendable type 'SQLExpression.BindVariable'; this is an error in the Swift 6 language mode
    case BindFailed      (Int32, String?, SQLExpression.BindVariable)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/SQLExpression.swift:102:17: note: consider making struct 'BindVariable' conform to the 'Sendable' protocol
  public struct BindVariable {
                ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/SQLite3Adaptor/SQLite3Expression.swift:13:14: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SQLite3ExpressionFactory' may have shared mutable state; this is an error in the Swift 6 language mode
  static let shared = SQLite3ExpressionFactory()
             ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/SQLite3Adaptor/SQLite3Expression.swift:11:12: note: class 'SQLite3ExpressionFactory' does not conform to the 'Sendable' protocol
open class SQLite3ExpressionFactory: SQLExpressionFactory {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/SQLite3Adaptor/SQLite3Expression.swift:13:14: note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
  static let shared = SQLite3ExpressionFactory()
             ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/SQLite3Adaptor/SQLite3Expression.swift:13:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  static let shared = SQLite3ExpressionFactory()
             ^
  nonisolated(unsafe)
SwiftEmitModule normal armv7k Emitting\ module\ for\ ZeeQL (in target 'ZeeQL' from project 'ZeeQL3')
EmitSwiftModule normal armv7k (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:18:8: warning: associated value 'CannotConstructFetchSpecification' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'AccessDataSourceError.ConstructionErrorReason'; this is an error in the Swift 6 language mode
  case CannotConstructFetchSpecification(ConstructionErrorReason)
       ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:12:15: note: consider making enum 'ConstructionErrorReason' conform to the 'Sendable' protocol
  public enum ConstructionErrorReason: Equatable {
              ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:22:8: warning: associated value 'FetchReturnedMoreThanOneResult(fetchSpecification:firstObject:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any FetchSpecification'; this is an error in the Swift 6 language mode
  case FetchReturnedMoreThanOneResult(fetchSpecification: FetchSpecification,
       ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/FetchSpecification.swift:18:17: note: protocol 'FetchSpecification' does not conform to the 'Sendable' protocol
public protocol FetchSpecification : SmartDescription {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:22:8: warning: associated value 'FetchReturnedMoreThanOneResult(fetchSpecification:firstObject:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any SwiftObject'; this is an error in the Swift 6 language mode
  case FetchReturnedMoreThanOneResult(fetchSpecification: FetchSpecification,
       ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/DataSource.swift:89:17: note: protocol 'SwiftObject' does not conform to the 'Sendable' protocol
public protocol SwiftObject: AnyObject {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:25:8: warning: associated value 'DidNotFindFetchSpecification(name:entity:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any Entity'; this is an error in the Swift 6 language mode
  case DidNotFindFetchSpecification(name: String, entity: Entity)
       ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Entity.swift:20:17: note: protocol 'Entity' does not conform to the 'Sendable' protocol
public protocol Entity: AnyObject, EquatableType, SmartDescription {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:26:8: warning: associated value 'CouldNotResolveBindings(fetchSpecification:bindings:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any FetchSpecification'; this is an error in the Swift 6 language mode
  case CouldNotResolveBindings(fetchSpecification: FetchSpecification,
       ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/FetchSpecification.swift:18:17: note: protocol 'FetchSpecification' does not conform to the 'Sendable' protocol
public protocol FetchSpecification : SmartDescription {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:26:8: warning: associated value 'CouldNotResolveBindings(fetchSpecification:bindings:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
  case CouldNotResolveBindings(fetchSpecification: FetchSpecification,
       ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/ActiveDataSource.swift:225:17: warning: let 'countAttr' is not concurrency-safe because non-'Sendable' type 'any Attribute' may have shared mutable state; this is an error in the Swift 6 language mode
fileprivate let countAttr : Attribute = {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Attribute.swift:39:17: note: protocol 'Attribute' does not conform to the 'Sendable' protocol
public protocol Attribute : Property, SQLValue, ExpressionEvaluation,
                ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/ActiveDataSource.swift:225:17: note: add '@MainActor' to make let 'countAttr' part of global actor 'MainActor'
fileprivate let countAttr : Attribute = {
                ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/ActiveDataSource.swift:225:17: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
fileprivate let countAttr : Attribute = {
                ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorError.swift:19:8: warning: associated value 'FailedToGrabNewPrimaryKey(entity:row:)' of 'Sendable'-conforming enum 'AdaptorChannelError' has non-sendable type 'any Entity'; this is an error in the Swift 6 language mode
  case FailedToGrabNewPrimaryKey(entity: Entity, row: AdaptorRow)
       ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Entity.swift:20:17: note: protocol 'Entity' does not conform to the 'Sendable' protocol
public protocol Entity: AnyObject, EquatableType, SmartDescription {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorError.swift:19:8: warning: associated value 'FailedToGrabNewPrimaryKey(entity:row:)' of 'Sendable'-conforming enum 'AdaptorChannelError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
  case FailedToGrabNewPrimaryKey(entity: Entity, row: AdaptorRow)
       ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorError.swift:24:8: warning: associated value 'FailedToRefetchInsertedRow(entity:row:)' of 'Sendable'-conforming enum 'AdaptorChannelError' has non-sendable type 'any Entity'; this is an error in the Swift 6 language mode
  case FailedToRefetchInsertedRow(entity: Entity?, row: AdaptorRow)
       ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Entity.swift:20:17: note: protocol 'Entity' does not conform to the 'Sendable' protocol
public protocol Entity: AnyObject, EquatableType, SmartDescription {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorError.swift:24:8: warning: associated value 'FailedToRefetchInsertedRow(entity:row:)' of 'Sendable'-conforming enum 'AdaptorChannelError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
  case FailedToRefetchInsertedRow(entity: Entity?, row: AdaptorRow)
       ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorQueryColumnRepresentable.swift:17:8: warning: associated value 'CannotConvertValue' of 'Sendable'-conforming enum 'AdaptorQueryTypeError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
  case CannotConvertValue(Any.Type, Any)
       ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModelDecoder.swift:101:10: warning: associated value 'unexpectedRelationshipType' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
    case unexpectedRelationshipType(Relationship)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Relationship.swift:14:17: note: protocol 'Relationship' does not conform to the 'Sendable' protocol
public protocol Relationship : Property, ExpressionEvaluation,
                ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModelPostProcessor.swift:19:10: warning: associated value 'missingDestinationEntity(relationship:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
    case missingDestinationEntity(relationship: Relationship)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Relationship.swift:14:17: note: protocol 'Relationship' does not conform to the 'Sendable' protocol
public protocol Relationship : Property, ExpressionEvaluation,
                ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModelPostProcessor.swift:20:10: warning: associated value 'reverseRelationshipMissesJoins(relationship:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
    case reverseRelationshipMissesJoins(relationship: Relationship)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Relationship.swift:14:17: note: protocol 'Relationship' does not conform to the 'Sendable' protocol
public protocol Relationship : Property, ExpressionEvaluation,
                ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModelPostProcessor.swift:21:10: warning: associated value 'missingPrimaryKey(entity:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Entity'; this is an error in the Swift 6 language mode
    case missingPrimaryKey(entity: Entity)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Entity.swift:20:17: note: protocol 'Entity' does not conform to the 'Sendable' protocol
public protocol Entity: AnyObject, EquatableType, SmartDescription {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModelPostProcessor.swift:23:10: warning: associated value 'reverseRelationshipHasNoJoins(relationship:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Relationship'; this is an error in the Swift 6 language mode
    case reverseRelationshipHasNoJoins(relationship: Relationship)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Relationship.swift:14:17: note: protocol 'Relationship' does not conform to the 'Sendable' protocol
public protocol Relationship : Property, ExpressionEvaluation,
                ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/CodeRelationship.swift:56:10: warning: associated value 'toManyCouldNotDeriveTargetAttribute(entityName:column:sourceAttribute:destinationEntity:)' of 'Sendable'-conforming enum 'JoinCalculationError' has non-sendable type 'any Attribute'; this is an error in the Swift 6 language mode
    case toManyCouldNotDeriveTargetAttribute(entityName: String,
         ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Attribute.swift:39:17: note: protocol 'Attribute' does not conform to the 'Sendable' protocol
public protocol Attribute : Property, SQLValue, ExpressionEvaluation,
                ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/CodeRelationship.swift:56:10: warning: associated value 'toManyCouldNotDeriveTargetAttribute(entityName:column:sourceAttribute:destinationEntity:)' of 'Sendable'-conforming enum 'JoinCalculationError' has non-sendable type 'any Entity'; this is an error in the Swift 6 language mode
    case toManyCouldNotDeriveTargetAttribute(entityName: String,
         ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Entity.swift:20:17: note: protocol 'Entity' does not conform to the 'Sendable' protocol
public protocol Entity: AnyObject, EquatableType, SmartDescription {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/CodeRelationship.swift:214:17: warning: let 'fakeEntity' is not concurrency-safe because non-'Sendable' type 'ModelEntity' may have shared mutable state; this is an error in the Swift 6 language mode
fileprivate let fakeEntity = ModelEntity(name: "FAKE")
                ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Entity.swift:468:12: note: class 'ModelEntity' does not conform to the 'Sendable' protocol
open class ModelEntity : Entity, Equatable {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/CodeRelationship.swift:214:17: note: add '@MainActor' to make let 'fakeEntity' part of global actor 'MainActor'
fileprivate let fakeEntity = ModelEntity(name: "FAKE")
                ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/CodeRelationship.swift:214:17: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
fileprivate let fakeEntity = ModelEntity(name: "FAKE")
                ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/CodeValueAttribute.swift:169:8: warning: associated value 'CannotSetValue' of 'Sendable'-conforming enum 'CodeValueAttributeError' has non-sendable type 'any Attribute'; this is an error in the Swift 6 language mode
  case CannotSetValue(AttributeValue.Type, Attribute, Any?)
       ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Attribute.swift:39:17: note: protocol 'Attribute' does not conform to the 'Sendable' protocol
public protocol Attribute : Property, SQLValue, ExpressionEvaluation,
                ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/CodeValueAttribute.swift:169:8: warning: associated value 'CannotSetValue' of 'Sendable'-conforming enum 'CodeValueAttributeError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
  case CannotSetValue(AttributeValue.Type, Attribute, Any?)
       ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/DatabaseChannelBase.swift:29:10: warning: associated value 'MissingRelationship' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Entity'; this is an error in the Swift 6 language mode
    case MissingRelationship(Entity, String)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Entity.swift:20:17: note: protocol 'Entity' does not conform to the 'Sendable' protocol
public protocol Entity: AnyObject, EquatableType, SmartDescription {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/DatabaseChannelBase.swift:30:10: warning: associated value 'IncompleteJoin' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Join'; this is an error in the Swift 6 language mode
    case IncompleteJoin(Join)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Join.swift:14:15: note: consider making struct 'Join' conform to the 'Sendable' protocol
public struct Join : Equatable, SmartDescription {
              ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/DatabaseChannelBase.swift:33:10: warning: associated value 'MissingAttributeUsedForLocking' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Attribute'; this is an error in the Swift 6 language mode
    case MissingAttributeUsedForLocking(Attribute)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Attribute.swift:39:17: note: protocol 'Attribute' does not conform to the 'Sendable' protocol
public protocol Attribute : Property, SQLValue, ExpressionEvaluation,
                ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/DatabaseContext.swift:21:10: warning: associated value 'FetchSpecificationHasUnresolvedBindings' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any FetchSpecification'; this is an error in the Swift 6 language mode
    case FetchSpecificationHasUnresolvedBindings(FetchSpecification)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/FetchSpecification.swift:18:17: note: protocol 'FetchSpecification' does not conform to the 'Sendable' protocol
public protocol FetchSpecification : SmartDescription {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/DatabaseObject.swift:164:8: warning: associated value 'ReadOnly' of 'Sendable'-conforming enum 'DatabaseObjectError' has non-sendable type 'any DatabaseObject'; this is an error in the Swift 6 language mode
  case ReadOnly(DatabaseObject)
       ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/DatabaseObject.swift:12:17: note: protocol 'DatabaseObject' does not conform to the 'Sendable' protocol
public protocol DatabaseObject : DatabaseObjectValidation,
                ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/DatabaseObject.swift:165:8: warning: associated value 'NoDatabase' of 'Sendable'-conforming enum 'DatabaseObjectError' has non-sendable type 'any DatabaseObject'; this is an error in the Swift 6 language mode
  case NoDatabase(DatabaseObject)
       ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/DatabaseObject.swift:12:17: note: protocol 'DatabaseObject' does not conform to the 'Sendable' protocol
public protocol DatabaseObject : DatabaseObjectValidation,
                ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/BooleanQualifier.swift:11:21: warning: static property 'trueQualifier' is not concurrency-safe because non-'Sendable' type 'BooleanQualifier' may have shared mutable state; this is an error in the Swift 6 language mode
  public static let trueQualifier  = BooleanQualifier(value: true)
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/BooleanQualifier.swift:9:15: note: consider making struct 'BooleanQualifier' conform to the 'Sendable' protocol
public struct BooleanQualifier : Qualifier, QualifierEvaluation, Equatable {
              ^
                                                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/BooleanQualifier.swift:11:21: note: add '@MainActor' to make static property 'trueQualifier' part of global actor 'MainActor'
  public static let trueQualifier  = BooleanQualifier(value: true)
                    ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/BooleanQualifier.swift:11:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  public static let trueQualifier  = BooleanQualifier(value: true)
                    ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/BooleanQualifier.swift:12:21: warning: static property 'falseQualifier' is not concurrency-safe because non-'Sendable' type 'BooleanQualifier' may have shared mutable state; this is an error in the Swift 6 language mode
  public static let falseQualifier = BooleanQualifier(value: false)
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/BooleanQualifier.swift:9:15: note: consider making struct 'BooleanQualifier' conform to the 'Sendable' protocol
public struct BooleanQualifier : Qualifier, QualifierEvaluation, Equatable {
              ^
                                                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/BooleanQualifier.swift:12:21: note: add '@MainActor' to make static property 'falseQualifier' part of global actor 'MainActor'
  public static let falseQualifier = BooleanQualifier(value: false)
                    ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/BooleanQualifier.swift:12:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  public static let falseQualifier = BooleanQualifier(value: false)
                    ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/ObjectTrackingContext.swift:23:10: warning: associated value 'FetchSpecificationHasUnresolvedBindings' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any FetchSpecification'; this is an error in the Swift 6 language mode
    case FetchSpecificationHasUnresolvedBindings(FetchSpecification)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/FetchSpecification.swift:18:17: note: protocol 'FetchSpecification' does not conform to the 'Sendable' protocol
public protocol FetchSpecification : SmartDescription {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/Logger.swift:60:12: warning: var 'globalZeeQLLogger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public var globalZeeQLLogger : ZeeQLLogger = {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/Logger.swift:60:12: note: convert 'globalZeeQLLogger' to a 'let' constant to make 'Sendable' shared state immutable
public var globalZeeQLLogger : ZeeQLLogger = {
       ~~~ ^
       let
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/Logger.swift:60:12: note: add '@MainActor' to make var 'globalZeeQLLogger' part of global actor 'MainActor'
public var globalZeeQLLogger : ZeeQLLogger = {
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/Logger.swift:60:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public var globalZeeQLLogger : ZeeQLLogger = {
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/Logger.swift:90:17: warning: let 'stderrLogLevel' is not concurrency-safe because non-'Sendable' type 'ZeeQLLoggerLogLevel' may have shared mutable state; this is an error in the Swift 6 language mode
fileprivate let stderrLogLevel : ZeeQLLoggerLogLevel = .Error
                ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/Logger.swift:42:13: note: consider making enum 'ZeeQLLoggerLogLevel' conform to the 'Sendable' protocol
public enum ZeeQLLoggerLogLevel : Int8 { // cannot nest types in generics
            ^
                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/Logger.swift:90:17: note: add '@MainActor' to make let 'stderrLogLevel' part of global actor 'MainActor'
fileprivate let stderrLogLevel : ZeeQLLoggerLogLevel = .Error
                ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/Logger.swift:90:17: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
fileprivate let stderrLogLevel : ZeeQLLoggerLogLevel = .Error
                ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/SimpleKVC.swift:69:10: warning: associated value 'CannotCoerceValueForKey' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
    case CannotCoerceValueForKey(Any.Type, Any?, String)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/SimpleKVC.swift:70:10: warning: associated value 'CannotCoerceValue' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
    case CannotCoerceValue(Any.Type, Any?)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/SQLite3Adaptor/SQLite3Adaptor.swift:84:10: warning: associated value 'OpenFailed(errorCode:message:path:mode:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'SQLite3Adaptor.OpenMode'; this is an error in the Swift 6 language mode
    case OpenFailed(errorCode: Int32, message: String?,
         ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/SQLite3Adaptor/SQLite3Adaptor.swift:88:15: note: consider making enum 'OpenMode' conform to the 'Sendable' protocol
  public enum OpenMode {
              ^
                       : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/SQLite3Adaptor/SQLite3AdaptorChannel.swift:29:10: warning: associated value 'BindFailed' of 'Sendable'-conforming enum 'Error' has non-sendable type 'SQLExpression.BindVariable'; this is an error in the Swift 6 language mode
    case BindFailed      (Int32, String?, SQLExpression.BindVariable)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/SQLExpression.swift:102:17: note: consider making struct 'BindVariable' conform to the 'Sendable' protocol
  public struct BindVariable {
                ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/SQLite3Adaptor/SQLite3Expression.swift:13:14: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SQLite3ExpressionFactory' may have shared mutable state; this is an error in the Swift 6 language mode
  static let shared = SQLite3ExpressionFactory()
             ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/SQLite3Adaptor/SQLite3Expression.swift:11:12: note: class 'SQLite3ExpressionFactory' does not conform to the 'Sendable' protocol
open class SQLite3ExpressionFactory: SQLExpressionFactory {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/SQLite3Adaptor/SQLite3Expression.swift:13:14: note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
  static let shared = SQLite3ExpressionFactory()
             ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/SQLite3Adaptor/SQLite3Expression.swift:13:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  static let shared = SQLite3ExpressionFactory()
             ^
  nonisolated(unsafe)
SwiftCompile normal armv7k Compiling\ SQLExpressionFactory.swift,\ SQLForeignKey.swift,\ SQLTableGroups.swift,\ SchemaGeneration.swift,\ SchemaSynchronization.swift,\ SchemaSynchronizationFactory.swift,\ TypedDatabaseChannel.swift,\ TypedFetchSpecification.swift,\ ZeeQLTypes.swift,\ ArrayDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/SQLExpressionFactory.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/SQLForeignKey.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/SQLTableGroups.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/SchemaGeneration.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/SchemaSynchronization.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/SchemaSynchronizationFactory.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/TypedDatabaseChannel.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/TypedFetchSpecification.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/ZeeQLTypes.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/ArrayDataSource.swift (in target 'ZeeQL' from project 'ZeeQL3')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/SQLExpressionFactory.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/SQLForeignKey.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/SQLTableGroups.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/SchemaGeneration.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/SchemaSynchronization.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/SchemaSynchronizationFactory.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/TypedDatabaseChannel.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/TypedFetchSpecification.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/ZeeQLTypes.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/ArrayDataSource.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k Compiling\ Database.swift,\ DatabaseChannel.swift,\ DatabaseChannelBase.swift,\ DatabaseChannelFetchHelper.swift,\ DatabaseContext.swift,\ DatabaseDataSource.swift,\ DatabaseObject.swift,\ DatabaseOperation.swift,\ Entity.swift,\ FancyModelMaker.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Database.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/DatabaseChannel.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/DatabaseChannelBase.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/DatabaseChannelFetchHelper.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/DatabaseContext.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/DatabaseDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/DatabaseObject.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/DatabaseOperation.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Entity.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/FancyModelMaker.swift (in target 'ZeeQL' from project 'ZeeQL3')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Database.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/DatabaseChannel.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/DatabaseChannelBase.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/DatabaseChannelBase.swift:29:10: warning: associated value 'MissingRelationship' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Entity'; this is an error in the Swift 6 language mode
    case MissingRelationship(Entity, String)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Entity.swift:20:17: note: protocol 'Entity' does not conform to the 'Sendable' protocol
public protocol Entity: AnyObject, EquatableType, SmartDescription {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/DatabaseChannelBase.swift:30:10: warning: associated value 'IncompleteJoin' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Join'; this is an error in the Swift 6 language mode
    case IncompleteJoin(Join)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Join.swift:14:15: note: consider making struct 'Join' conform to the 'Sendable' protocol
public struct Join : Equatable, SmartDescription {
              ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/DatabaseChannelBase.swift:33:10: warning: associated value 'MissingAttributeUsedForLocking' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any Attribute'; this is an error in the Swift 6 language mode
    case MissingAttributeUsedForLocking(Attribute)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Attribute.swift:39:17: note: protocol 'Attribute' does not conform to the 'Sendable' protocol
public protocol Attribute : Property, SQLValue, ExpressionEvaluation,
                ^
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/DatabaseChannelFetchHelper.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/DatabaseContext.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/DatabaseContext.swift:21:10: warning: associated value 'FetchSpecificationHasUnresolvedBindings' of 'Sendable'-conforming enum 'Error' has non-sendable type 'any FetchSpecification'; this is an error in the Swift 6 language mode
    case FetchSpecificationHasUnresolvedBindings(FetchSpecification)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/FetchSpecification.swift:18:17: note: protocol 'FetchSpecification' does not conform to the 'Sendable' protocol
public protocol FetchSpecification : SmartDescription {
                ^
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/DatabaseDataSource.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/DatabaseObject.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/DatabaseObject.swift:164:8: warning: associated value 'ReadOnly' of 'Sendable'-conforming enum 'DatabaseObjectError' has non-sendable type 'any DatabaseObject'; this is an error in the Swift 6 language mode
  case ReadOnly(DatabaseObject)
       ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/DatabaseObject.swift:12:17: note: protocol 'DatabaseObject' does not conform to the 'Sendable' protocol
public protocol DatabaseObject : DatabaseObjectValidation,
                ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/DatabaseObject.swift:165:8: warning: associated value 'NoDatabase' of 'Sendable'-conforming enum 'DatabaseObjectError' has non-sendable type 'any DatabaseObject'; this is an error in the Swift 6 language mode
  case NoDatabase(DatabaseObject)
       ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/DatabaseObject.swift:12:17: note: protocol 'DatabaseObject' does not conform to the 'Sendable' protocol
public protocol DatabaseObject : DatabaseObjectValidation,
                ^
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/DatabaseOperation.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Entity.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/FancyModelMaker.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ Logger.swift,\ Pluralize.swift,\ SimpleKVC.swift,\ SmartDescription.swift,\ TimeRange.swift,\ SQLite3Adaptor.swift,\ SQLite3AdaptorChannel.swift,\ SQLite3Expression.swift,\ SQLite3ModelFetch.swift,\ SQLite3SchemaSynchronizationFactory.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/Logger.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/Pluralize.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/SimpleKVC.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/SmartDescription.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/TimeRange.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/SQLite3Adaptor/SQLite3Adaptor.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/SQLite3Adaptor/SQLite3AdaptorChannel.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/SQLite3Adaptor/SQLite3Expression.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/SQLite3Adaptor/SQLite3ModelFetch.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/SQLite3Adaptor/SQLite3SchemaSynchronizationFactory.swift (in target 'ZeeQL' from project 'ZeeQL3')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/Logger.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/Logger.swift:60:12: warning: var 'globalZeeQLLogger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public var globalZeeQLLogger : ZeeQLLogger = {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/Logger.swift:60:12: note: convert 'globalZeeQLLogger' to a 'let' constant to make 'Sendable' shared state immutable
public var globalZeeQLLogger : ZeeQLLogger = {
       ~~~ ^
       let
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/Logger.swift:60:12: note: add '@MainActor' to make var 'globalZeeQLLogger' part of global actor 'MainActor'
public var globalZeeQLLogger : ZeeQLLogger = {
           ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/Logger.swift:60:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public var globalZeeQLLogger : ZeeQLLogger = {
           ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/Logger.swift:90:17: warning: let 'stderrLogLevel' is not concurrency-safe because non-'Sendable' type 'ZeeQLLoggerLogLevel' may have shared mutable state; this is an error in the Swift 6 language mode
fileprivate let stderrLogLevel : ZeeQLLoggerLogLevel = .Error
                ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/Logger.swift:42:13: note: consider making enum 'ZeeQLLoggerLogLevel' conform to the 'Sendable' protocol
public enum ZeeQLLoggerLogLevel : Int8 { // cannot nest types in generics
            ^
                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/Logger.swift:90:17: note: add '@MainActor' to make let 'stderrLogLevel' part of global actor 'MainActor'
fileprivate let stderrLogLevel : ZeeQLLoggerLogLevel = .Error
                ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/Logger.swift:90:17: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
fileprivate let stderrLogLevel : ZeeQLLoggerLogLevel = .Error
                ^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/Pluralize.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/SimpleKVC.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/SimpleKVC.swift:69:10: warning: associated value 'CannotCoerceValueForKey' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
    case CannotCoerceValueForKey(Any.Type, Any?, String)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/SimpleKVC.swift:70:10: warning: associated value 'CannotCoerceValue' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
    case CannotCoerceValue(Any.Type, Any?)
         ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/SmartDescription.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/TimeRange.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/SQLite3Adaptor/SQLite3Adaptor.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/SQLite3Adaptor/SQLite3Adaptor.swift:84:10: warning: associated value 'OpenFailed(errorCode:message:path:mode:)' of 'Sendable'-conforming enum 'Error' has non-sendable type 'SQLite3Adaptor.OpenMode'; this is an error in the Swift 6 language mode
    case OpenFailed(errorCode: Int32, message: String?,
         ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/SQLite3Adaptor/SQLite3Adaptor.swift:88:15: note: consider making enum 'OpenMode' conform to the 'Sendable' protocol
  public enum OpenMode {
              ^
                       : Sendable
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/SQLite3Adaptor/SQLite3AdaptorChannel.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/SQLite3Adaptor/SQLite3AdaptorChannel.swift:29:10: warning: associated value 'BindFailed' of 'Sendable'-conforming enum 'Error' has non-sendable type 'SQLExpression.BindVariable'; this is an error in the Swift 6 language mode
    case BindFailed      (Int32, String?, SQLExpression.BindVariable)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/SQLExpression.swift:102:17: note: consider making struct 'BindVariable' conform to the 'Sendable' protocol
  public struct BindVariable {
                ^
                             : Sendable
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/SQLite3Adaptor/SQLite3Expression.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/SQLite3Adaptor/SQLite3Expression.swift:13:14: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SQLite3ExpressionFactory' may have shared mutable state; this is an error in the Swift 6 language mode
  static let shared = SQLite3ExpressionFactory()
             ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/SQLite3Adaptor/SQLite3Expression.swift:11:12: note: class 'SQLite3ExpressionFactory' does not conform to the 'Sendable' protocol
open class SQLite3ExpressionFactory: SQLExpressionFactory {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/SQLite3Adaptor/SQLite3Expression.swift:13:14: note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
  static let shared = SQLite3ExpressionFactory()
             ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/SQLite3Adaptor/SQLite3Expression.swift:13:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  static let shared = SQLite3ExpressionFactory()
             ^
  nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/SQLite3Adaptor/SQLite3ModelFetch.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/SQLite3Adaptor/SQLite3SchemaSynchronizationFactory.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k Compiling\ AdaptorModelFetch.swift,\ AdaptorOperation.swift,\ AdaptorQueryColumnRepresentable.swift,\ AdaptorQueryType.swift,\ AdaptorRecord.swift,\ AdaptorRecordSchema.swift,\ Attribute.swift,\ AttributeKey.swift,\ AttributeValue.swift,\ AdaptorRecordDecoder.swift,\ CodableEntity.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorModelFetch.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorOperation.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorQueryColumnRepresentable.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorQueryType.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorRecord.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorRecordSchema.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Attribute.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AttributeKey.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AttributeValue.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/AdaptorRecordDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableEntity.swift (in target 'ZeeQL' from project 'ZeeQL3')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorModelFetch.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorOperation.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorQueryColumnRepresentable.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorQueryColumnRepresentable.swift:17:8: warning: associated value 'CannotConvertValue' of 'Sendable'-conforming enum 'AdaptorQueryTypeError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
  case CannotConvertValue(Any.Type, Any)
       ^
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorQueryType.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorRecord.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorRecordSchema.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Attribute.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AttributeKey.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AttributeValue.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/AdaptorRecordDecoder.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableEntity.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k Compiling\ AccessDataSource.swift,\ AccessDataSourceError.swift,\ AccessDataSourceFinders.swift,\ ActiveDataSource.swift,\ ActiveRecord.swift,\ ActiveRecordType.swift,\ Adaptor.swift,\ AdaptorChannel.swift,\ AdaptorChannelPool.swift,\ AdaptorDataSource.swift,\ AdaptorError.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceFinders.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/ActiveDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/ActiveRecord.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/ActiveRecordType.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Adaptor.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorChannel.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorChannelPool.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorError.swift (in target 'ZeeQL' from project 'ZeeQL3')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSource.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:18:8: warning: associated value 'CannotConstructFetchSpecification' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'AccessDataSourceError.ConstructionErrorReason'; this is an error in the Swift 6 language mode
  case CannotConstructFetchSpecification(ConstructionErrorReason)
       ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:12:15: note: consider making enum 'ConstructionErrorReason' conform to the 'Sendable' protocol
  public enum ConstructionErrorReason: Equatable {
              ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:22:8: warning: associated value 'FetchReturnedMoreThanOneResult(fetchSpecification:firstObject:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any FetchSpecification'; this is an error in the Swift 6 language mode
  case FetchReturnedMoreThanOneResult(fetchSpecification: FetchSpecification,
       ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/FetchSpecification.swift:18:17: note: protocol 'FetchSpecification' does not conform to the 'Sendable' protocol
public protocol FetchSpecification : SmartDescription {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:22:8: warning: associated value 'FetchReturnedMoreThanOneResult(fetchSpecification:firstObject:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any SwiftObject'; this is an error in the Swift 6 language mode
  case FetchReturnedMoreThanOneResult(fetchSpecification: FetchSpecification,
       ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/DataSource.swift:89:17: note: protocol 'SwiftObject' does not conform to the 'Sendable' protocol
public protocol SwiftObject: AnyObject {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:25:8: warning: associated value 'DidNotFindFetchSpecification(name:entity:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any Entity'; this is an error in the Swift 6 language mode
  case DidNotFindFetchSpecification(name: String, entity: Entity)
       ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Entity.swift:20:17: note: protocol 'Entity' does not conform to the 'Sendable' protocol
public protocol Entity: AnyObject, EquatableType, SmartDescription {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:26:8: warning: associated value 'CouldNotResolveBindings(fetchSpecification:bindings:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'any FetchSpecification'; this is an error in the Swift 6 language mode
  case CouldNotResolveBindings(fetchSpecification: FetchSpecification,
       ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/FetchSpecification.swift:18:17: note: protocol 'FetchSpecification' does not conform to the 'Sendable' protocol
public protocol FetchSpecification : SmartDescription {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift:26:8: warning: associated value 'CouldNotResolveBindings(fetchSpecification:bindings:)' of 'Sendable'-conforming enum 'AccessDataSourceError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
  case CouldNotResolveBindings(fetchSpecification: FetchSpecification,
       ^
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceFinders.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/ActiveDataSource.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/ActiveDataSource.swift:225:17: warning: let 'countAttr' is not concurrency-safe because non-'Sendable' type 'any Attribute' may have shared mutable state; this is an error in the Swift 6 language mode
fileprivate let countAttr : Attribute = {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Attribute.swift:39:17: note: protocol 'Attribute' does not conform to the 'Sendable' protocol
public protocol Attribute : Property, SQLValue, ExpressionEvaluation,
                ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/ActiveDataSource.swift:225:17: note: add '@MainActor' to make let 'countAttr' part of global actor 'MainActor'
fileprivate let countAttr : Attribute = {
                ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/ActiveDataSource.swift:225:17: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
fileprivate let countAttr : Attribute = {
                ^
nonisolated(unsafe)
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/ActiveRecord.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/ActiveRecordType.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Adaptor.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorChannel.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorChannelPool.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorChannelPool.swift:95:10: warning: capture of 'self' with non-sendable type 'SingleConnectionPool' in a '@Sendable' closure
      if self.gc != nil { return } // already running
         ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorChannelPool.swift:42:20: note: class 'SingleConnectionPool' does not conform to the 'Sendable' protocol
public final class SingleConnectionPool: AdaptorChannelPool {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorChannelPool.swift:205:10: warning: capture of 'self' with non-sendable type 'SimpleAdaptorChannelPool' in a '@Sendable' closure
      if self.gc != nil { return } // already running
         ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorChannelPool.swift:144:20: note: class 'SimpleAdaptorChannelPool' does not conform to the 'Sendable' protocol
public final class SimpleAdaptorChannelPool: AdaptorChannelPool {
                   ^
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorDataSource.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorError.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorError.swift:19:8: warning: associated value 'FailedToGrabNewPrimaryKey(entity:row:)' of 'Sendable'-conforming enum 'AdaptorChannelError' has non-sendable type 'any Entity'; this is an error in the Swift 6 language mode
  case FailedToGrabNewPrimaryKey(entity: Entity, row: AdaptorRow)
       ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Entity.swift:20:17: note: protocol 'Entity' does not conform to the 'Sendable' protocol
public protocol Entity: AnyObject, EquatableType, SmartDescription {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorError.swift:19:8: warning: associated value 'FailedToGrabNewPrimaryKey(entity:row:)' of 'Sendable'-conforming enum 'AdaptorChannelError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
  case FailedToGrabNewPrimaryKey(entity: Entity, row: AdaptorRow)
       ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorError.swift:24:8: warning: associated value 'FailedToRefetchInsertedRow(entity:row:)' of 'Sendable'-conforming enum 'AdaptorChannelError' has non-sendable type 'any Entity'; this is an error in the Swift 6 language mode
  case FailedToRefetchInsertedRow(entity: Entity?, row: AdaptorRow)
       ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Entity.swift:20:17: note: protocol 'Entity' does not conform to the 'Sendable' protocol
public protocol Entity: AnyObject, EquatableType, SmartDescription {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorError.swift:24:8: warning: associated value 'FailedToRefetchInsertedRow(entity:row:)' of 'Sendable'-conforming enum 'AdaptorChannelError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
  case FailedToRefetchInsertedRow(entity: Entity?, row: AdaptorRow)
       ^
SwiftCompile normal arm64 Compiling\ BooleanQualifier.swift,\ ComparisonOperation.swift,\ CompoundQualifier.swift,\ Constant.swift,\ DataSource.swift,\ EntityType+Builder.swift,\ EntityType.swift,\ Expression.swift,\ ExpressionEvaluation.swift,\ FetchSpecification+Builder.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/BooleanQualifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/ComparisonOperation.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/CompoundQualifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/Constant.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/DataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/EntityType+Builder.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/EntityType.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/Expression.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/ExpressionEvaluation.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/FetchSpecification+Builder.swift (in target 'ZeeQL' from project 'ZeeQL3')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/BooleanQualifier.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/BooleanQualifier.swift:11:21: warning: static property 'trueQualifier' is not concurrency-safe because non-'Sendable' type 'BooleanQualifier' may have shared mutable state; this is an error in the Swift 6 language mode
  public static let trueQualifier  = BooleanQualifier(value: true)
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/BooleanQualifier.swift:9:15: note: consider making struct 'BooleanQualifier' conform to the 'Sendable' protocol
public struct BooleanQualifier : Qualifier, QualifierEvaluation, Equatable {
              ^
                                                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/BooleanQualifier.swift:11:21: note: add '@MainActor' to make static property 'trueQualifier' part of global actor 'MainActor'
  public static let trueQualifier  = BooleanQualifier(value: true)
                    ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/BooleanQualifier.swift:11:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  public static let trueQualifier  = BooleanQualifier(value: true)
                    ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/BooleanQualifier.swift:12:21: warning: static property 'falseQualifier' is not concurrency-safe because non-'Sendable' type 'BooleanQualifier' may have shared mutable state; this is an error in the Swift 6 language mode
  public static let falseQualifier = BooleanQualifier(value: false)
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/BooleanQualifier.swift:9:15: note: consider making struct 'BooleanQualifier' conform to the 'Sendable' protocol
public struct BooleanQualifier : Qualifier, QualifierEvaluation, Equatable {
              ^
                                                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/BooleanQualifier.swift:12:21: note: add '@MainActor' to make static property 'falseQualifier' part of global actor 'MainActor'
  public static let falseQualifier = BooleanQualifier(value: false)
                    ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/BooleanQualifier.swift:12:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  public static let falseQualifier = BooleanQualifier(value: false)
                    ^
  nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/ComparisonOperation.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/CompoundQualifier.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/Constant.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/DataSource.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/EntityType+Builder.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/EntityType.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/Expression.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/ExpressionEvaluation.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/FetchSpecification+Builder.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftEmitModule normal arm64_32 Emitting\ module\ for\ ZeeQL (in target 'ZeeQL' from project 'ZeeQL3')
EmitSwiftModule normal arm64_32 (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling BooleanQualifier.swift, ComparisonOperation.swift, CompoundQualifier.swift, Constant.swift, DataSource.swift, EntityType+Builder.swift, EntityType.swift, Expression.swift, ExpressionEvaluation.swift, FetchSpecification+Builder.swift (in target 'ZeeQL' from project 'ZeeQL3')
SwiftCompile normal arm64_32 Compiling\ Database.swift,\ DatabaseChannel.swift,\ DatabaseChannelBase.swift,\ DatabaseChannelFetchHelper.swift,\ DatabaseContext.swift,\ DatabaseDataSource.swift,\ DatabaseObject.swift,\ DatabaseOperation.swift,\ Entity.swift,\ FancyModelMaker.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Database.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/DatabaseChannel.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/DatabaseChannelBase.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/DatabaseChannelFetchHelper.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/DatabaseContext.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/DatabaseDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/DatabaseObject.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/DatabaseOperation.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Entity.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/FancyModelMaker.swift (in target 'ZeeQL' from project 'ZeeQL3')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Database.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/DatabaseChannel.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/DatabaseChannelBase.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/DatabaseChannelFetchHelper.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/DatabaseContext.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/DatabaseDataSource.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/DatabaseObject.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/DatabaseOperation.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Entity.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/FancyModelMaker.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Emitting module for ZeeQL (in target 'ZeeQL' from project 'ZeeQL3')
SwiftDriver\ Compilation\ Requirements ZeeQL normal arm64 com.apple.xcode.tools.swift.compiler (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name ZeeQL -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZeeQL3.build/Debug-watchos/ZeeQL.build/Objects-normal/arm64/ZeeQL.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/CSQLite3/Sources/CSQLite3/module.modulemap -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZeeQL3.build/Debug-watchos/ZeeQL.build/Objects-normal/arm64/ZeeQL-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZeeQL3.build/Debug-watchos/ZeeQL.build/Objects-normal/arm64/ZeeQL.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZeeQL3.build/Debug-watchos/ZeeQL.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZeeQL3.build/Debug-watchos/ZeeQL.build/Objects-normal/arm64/ZeeQL_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZeeQL3.build/Debug-watchos/ZeeQL.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZeeQL3.build/Debug-watchos/ZeeQL.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZeeQL3.build/Debug-watchos/ZeeQL.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZeeQL3.build/Debug-watchos/ZeeQL.build/Objects-normal/arm64/ZeeQL-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal armv7k Emitting module for ZeeQL (in target 'ZeeQL' from project 'ZeeQL3')
SwiftCompile normal arm64_32 Compiling\ Join.swift,\ MirrorHelpers.swift,\ Model.swift,\ ModelLoader.swift,\ ModelPattern.swift,\ ModelSQLizer.swift,\ Property.swift,\ Relationship.swift,\ SQLAttributeChange.swift,\ SQLExpression.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Join.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/MirrorHelpers.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Model.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/ModelLoader.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/ModelPattern.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/ModelSQLizer.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Property.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Relationship.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/SQLAttributeChange.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/SQLExpression.swift (in target 'ZeeQL' from project 'ZeeQL3')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Join.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/MirrorHelpers.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Model.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/ModelLoader.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/ModelPattern.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/ModelSQLizer.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Property.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Relationship.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/SQLAttributeChange.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/SQLExpression.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriver\ Compilation\ Requirements ZeeQL normal armv7k com.apple.xcode.tools.swift.compiler (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name ZeeQL -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZeeQL3.build/Debug-watchos/ZeeQL.build/Objects-normal/armv7k/ZeeQL.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/CSQLite3/Sources/CSQLite3/module.modulemap -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target armv7k-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZeeQL3.build/Debug-watchos/ZeeQL.build/Objects-normal/armv7k/ZeeQL-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZeeQL3.build/Debug-watchos/ZeeQL.build/Objects-normal/armv7k/ZeeQL.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZeeQL3.build/Debug-watchos/ZeeQL.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZeeQL3.build/Debug-watchos/ZeeQL.build/Objects-normal/armv7k/ZeeQL_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZeeQL3.build/Debug-watchos/ZeeQL.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZeeQL3.build/Debug-watchos/ZeeQL.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZeeQL3.build/Debug-watchos/ZeeQL.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZeeQL3.build/Debug-watchos/ZeeQL.build/Objects-normal/armv7k/ZeeQL-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
** BUILD FAILED **
The following build commands failed:
	SwiftCompile normal arm64 Compiling\ Join.swift,\ MirrorHelpers.swift,\ Model.swift,\ ModelLoader.swift,\ ModelPattern.swift,\ ModelSQLizer.swift,\ Property.swift,\ Relationship.swift,\ SQLAttributeChange.swift,\ SQLExpression.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Join.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/MirrorHelpers.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Model.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/ModelLoader.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/ModelPattern.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/ModelSQLizer.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Property.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Relationship.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/SQLAttributeChange.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/SQLExpression.swift (in target 'ZeeQL' from project 'ZeeQL3')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/ModelLoader.swift (in target 'ZeeQL' from project 'ZeeQL3')
	Building workspace spi-builder-workspace with scheme ZeeQL3
(3 failures)
Command line invocation:
    /Applications/Xcode-16.3.0.app/Contents/Developer/usr/bin/xcodebuild -IDEClonedSourcePackagesDirPathOverride=/Users/admin/builder/spi-builder-workspace/.dependencies -resolvePackageDependencies
Resolve Package Graph
Resolved source packages:
  ZeeQL3: /Users/admin/builder/spi-builder-workspace
  CSQLite3: https://github.com/ZeeQL/CSQLite3.git @ 2.0.3
resolved source packages: ZeeQL3, CSQLite3
{
  "dependencies" : [
    {
      "identity" : "csqlite3",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "2.0.3",
            "upper_bound" : "3.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/ZeeQL/CSQLite3.git"
    }
  ],
  "manifest_display_name" : "ZeeQL3",
  "name" : "ZeeQL3",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "ZeeQL",
      "targets" : [
        "ZeeQL"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "ZeeQLTests",
      "module_type" : "SwiftTarget",
      "name" : "ZeeQLTests",
      "path" : "Tests/ZeeQLTests",
      "sources" : [
        "AdaptorActiveRecordTestCase.swift",
        "AdaptorOGoTestCase.swift",
        "CodableModelTests.swift",
        "CodeEntityModelTests.swift",
        "CodeObjectModelTests.swift",
        "ContactsDBModel.swift",
        "EquatableTypeTests.swift",
        "FakeAdaptor.swift",
        "FormatterTests.swift",
        "ModelLoaderTests.swift",
        "ModelTests.swift",
        "QualifierEvaluationTests.swift",
        "QualifierParserTests.swift",
        "SQLExpressionTests.swift",
        "SQLite3ActiveRecordTests.swift",
        "SQLite3AdaptorTests.swift",
        "SQLite3CodableTests.swift",
        "SQLite3ExpressionTests.swift",
        "SQLite3ModelTests.swift",
        "SQLite3OGoAdaptorTests.swift",
        "SchemaGenerationTests.swift",
        "SchemaSyncTests.swift"
      ],
      "target_dependencies" : [
        "ZeeQL"
      ],
      "type" : "test"
    },
    {
      "c99name" : "ZeeQL",
      "module_type" : "SwiftTarget",
      "name" : "ZeeQL",
      "path" : "Sources/ZeeQL",
      "product_dependencies" : [
        "CSQLite3"
      ],
      "product_memberships" : [
        "ZeeQL"
      ],
      "sources" : [
        "Access/AccessDataSource.swift",
        "Access/AccessDataSourceError.swift",
        "Access/AccessDataSourceFinders.swift",
        "Access/ActiveDataSource.swift",
        "Access/ActiveRecord.swift",
        "Access/ActiveRecordType.swift",
        "Access/Adaptor.swift",
        "Access/AdaptorChannel.swift",
        "Access/AdaptorChannelPool.swift",
        "Access/AdaptorDataSource.swift",
        "Access/AdaptorError.swift",
        "Access/AdaptorModelFetch.swift",
        "Access/AdaptorOperation.swift",
        "Access/AdaptorQueryColumnRepresentable.swift",
        "Access/AdaptorQueryType.swift",
        "Access/AdaptorRecord.swift",
        "Access/AdaptorRecordSchema.swift",
        "Access/Attribute.swift",
        "Access/AttributeKey.swift",
        "Access/AttributeValue.swift",
        "Access/Codable/AdaptorRecordDecoder.swift",
        "Access/Codable/CodableEntity.swift",
        "Access/Codable/CodableModel.swift",
        "Access/Codable/CodableModelDecoder.swift",
        "Access/Codable/CodableModelEntityDecoder.swift",
        "Access/Codable/CodableModelPostProcessor.swift",
        "Access/Codable/CodableRelationship.swift",
        "Access/Codable/EntityPropertyReflectionContainer.swift",
        "Access/CodeAttribute.swift",
        "Access/CodeEntity.swift",
        "Access/CodeRelationship.swift",
        "Access/CodeValueAttribute.swift",
        "Access/Database.swift",
        "Access/DatabaseChannel.swift",
        "Access/DatabaseChannelBase.swift",
        "Access/DatabaseChannelFetchHelper.swift",
        "Access/DatabaseContext.swift",
        "Access/DatabaseDataSource.swift",
        "Access/DatabaseObject.swift",
        "Access/DatabaseOperation.swift",
        "Access/Entity.swift",
        "Access/FancyModelMaker.swift",
        "Access/Join.swift",
        "Access/MirrorHelpers.swift",
        "Access/Model.swift",
        "Access/ModelLoader.swift",
        "Access/ModelPattern.swift",
        "Access/ModelSQLizer.swift",
        "Access/Property.swift",
        "Access/Relationship.swift",
        "Access/SQLAttributeChange.swift",
        "Access/SQLExpression.swift",
        "Access/SQLExpressionFactory.swift",
        "Access/SQLForeignKey.swift",
        "Access/SQLTableGroups.swift",
        "Access/SchemaGeneration.swift",
        "Access/SchemaSynchronization.swift",
        "Access/SchemaSynchronizationFactory.swift",
        "Access/TypedDatabaseChannel.swift",
        "Access/TypedFetchSpecification.swift",
        "Access/ZeeQLTypes.swift",
        "Control/ArrayDataSource.swift",
        "Control/BooleanQualifier.swift",
        "Control/ComparisonOperation.swift",
        "Control/CompoundQualifier.swift",
        "Control/Constant.swift",
        "Control/DataSource.swift",
        "Control/EntityType+Builder.swift",
        "Control/EntityType.swift",
        "Control/Expression.swift",
        "Control/ExpressionEvaluation.swift",
        "Control/FetchSpecification+Builder.swift",
        "Control/FetchSpecification.swift",
        "Control/GlobalID.swift",
        "Control/Key.swift",
        "Control/KeyComparisonQualifier.swift",
        "Control/KeyValueQualifier.swift",
        "Control/ModelFetchSpecification.swift",
        "Control/NotQualifier.swift",
        "Control/ObjectStore.swift",
        "Control/ObjectTrackingContext.swift",
        "Control/Qualifier.swift",
        "Control/QualifierEvaluation.swift",
        "Control/QualifierParser.swift",
        "Control/QualifierVariable.swift",
        "Control/SQLQualifier.swift",
        "Control/SortOrdering.swift",
        "Control/StoreKeyValueCoding.swift",
        "Foundation/AnyOptional.swift",
        "Foundation/Dictionary+Extensions.swift",
        "Foundation/EquatableType.swift",
        "Foundation/KeyValueStringFormatter.swift",
        "Foundation/Logger.swift",
        "Foundation/Pluralize.swift",
        "Foundation/SimpleKVC.swift",
        "Foundation/SmartDescription.swift",
        "Foundation/TimeRange.swift",
        "SQLite3Adaptor/SQLite3Adaptor.swift",
        "SQLite3Adaptor/SQLite3AdaptorChannel.swift",
        "SQLite3Adaptor/SQLite3Expression.swift",
        "SQLite3Adaptor/SQLite3ModelFetch.swift",
        "SQLite3Adaptor/SQLite3SchemaSynchronizationFactory.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.0"
}
{
  "workspace" : {
    "name" : "spi-builder-workspace",
    "schemes" : [
      "ZeeQL3"
    ]
  }
}
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme ZeeQL3 -destination generic/platform=watchOS
Command line invocation:
    /Applications/Xcode-16.3.0.app/Contents/Developer/usr/bin/xcodebuild -IDEClonedSourcePackagesDirPathOverride=/Users/admin/builder/spi-builder-workspace/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath /Users/admin/builder/spi-builder-workspace/.derivedData build -scheme ZeeQL3 -destination generic/platform=watchOS
Resolve Package Graph
Resolved source packages:
  ZeeQL3: /Users/admin/builder/spi-builder-workspace
  CSQLite3: https://github.com/ZeeQL/CSQLite3.git @ 2.0.3
ComputePackagePrebuildTargetDependencyGraph
Prepare packages
CreateBuildRequest
SendProjectDescription
CreateBuildOperation
ComputeTargetDependencyGraph
note: Building targets in dependency order
note: Target dependency graph (4 targets)
    Target 'ZeeQL' in project 'ZeeQL3'
        ➜ Explicit dependency on target 'ZeeQL' in project 'ZeeQL3'
        ➜ Explicit dependency on target 'CSQLite3' in project 'CSQLite3'
    Target 'ZeeQL' in project 'ZeeQL3'
        ➜ Explicit dependency on target 'CSQLite3' in project 'CSQLite3'
    Target 'CSQLite3' in project 'CSQLite3'
        ➜ Explicit dependency on target 'CSQLite3' in project 'CSQLite3'
    Target 'CSQLite3' in project 'CSQLite3' (no dependencies)
GatherProvisioningInputs
CreateBuildDescription
ExecuteExternalTool /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -v -E -dM -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -x c -c /dev/null
ExecuteExternalTool /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc --version
ExecuteExternalTool /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld -version_details
Build description signature: 6a70648702ce3d19ae2e6dadb2f54c15
Build description path: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCBuildData/6a70648702ce3d19ae2e6dadb2f54c15.xcbuilddata
ClangStatCache /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -o /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache
SwiftDriver ZeeQL normal armv7k com.apple.xcode.tools.swift.compiler (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-SwiftDriver -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name ZeeQL -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZeeQL3.build/Debug-watchos/ZeeQL.build/Objects-normal/armv7k/ZeeQL.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/CSQLite3/Sources/CSQLite3/module.modulemap -DXcode -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target armv7k-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZeeQL3.build/Debug-watchos/ZeeQL.build/Objects-normal/armv7k/ZeeQL-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZeeQL3.build/Debug-watchos/ZeeQL.build/Objects-normal/armv7k/ZeeQL.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZeeQL3.build/Debug-watchos/ZeeQL.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZeeQL3.build/Debug-watchos/ZeeQL.build/Objects-normal/armv7k/ZeeQL_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZeeQL3.build/Debug-watchos/ZeeQL.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZeeQL3.build/Debug-watchos/ZeeQL.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZeeQL3.build/Debug-watchos/ZeeQL.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZeeQL3.build/Debug-watchos/ZeeQL.build/Objects-normal/armv7k/ZeeQL-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriver ZeeQL normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-SwiftDriver -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name ZeeQL -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZeeQL3.build/Debug-watchos/ZeeQL.build/Objects-normal/arm64_32/ZeeQL.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/CSQLite3/Sources/CSQLite3/module.modulemap -DXcode -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64_32-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZeeQL3.build/Debug-watchos/ZeeQL.build/Objects-normal/arm64_32/ZeeQL-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZeeQL3.build/Debug-watchos/ZeeQL.build/Objects-normal/arm64_32/ZeeQL.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZeeQL3.build/Debug-watchos/ZeeQL.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZeeQL3.build/Debug-watchos/ZeeQL.build/Objects-normal/arm64_32/ZeeQL_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZeeQL3.build/Debug-watchos/ZeeQL.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZeeQL3.build/Debug-watchos/ZeeQL.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZeeQL3.build/Debug-watchos/ZeeQL.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZeeQL3.build/Debug-watchos/ZeeQL.build/Objects-normal/arm64_32/ZeeQL-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriver ZeeQL normal arm64 com.apple.xcode.tools.swift.compiler (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-SwiftDriver -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name ZeeQL -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZeeQL3.build/Debug-watchos/ZeeQL.build/Objects-normal/arm64/ZeeQL.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/CSQLite3/Sources/CSQLite3/module.modulemap -DXcode -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZeeQL3.build/Debug-watchos/ZeeQL.build/Objects-normal/arm64/ZeeQL-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZeeQL3.build/Debug-watchos/ZeeQL.build/Objects-normal/arm64/ZeeQL.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZeeQL3.build/Debug-watchos/ZeeQL.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZeeQL3.build/Debug-watchos/ZeeQL.build/Objects-normal/arm64/ZeeQL_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZeeQL3.build/Debug-watchos/ZeeQL.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZeeQL3.build/Debug-watchos/ZeeQL.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZeeQL3.build/Debug-watchos/ZeeQL.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZeeQL3.build/Debug-watchos/ZeeQL.build/Objects-normal/arm64/ZeeQL-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftEmitModule normal arm64_32 Emitting\ module\ for\ ZeeQL (in target 'ZeeQL' from project 'ZeeQL3')
EmitSwiftModule normal arm64_32 (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 Compiling\ AdaptorModelFetch.swift,\ AdaptorOperation.swift,\ AdaptorQueryColumnRepresentable.swift,\ AdaptorQueryType.swift,\ AdaptorRecord.swift,\ AdaptorRecordSchema.swift,\ Attribute.swift,\ AttributeKey.swift,\ AttributeValue.swift,\ AdaptorRecordDecoder.swift,\ CodableEntity.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorModelFetch.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorOperation.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorQueryColumnRepresentable.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorQueryType.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorRecord.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorRecordSchema.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Attribute.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AttributeKey.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AttributeValue.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/AdaptorRecordDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableEntity.swift (in target 'ZeeQL' from project 'ZeeQL3')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorModelFetch.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorOperation.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorQueryColumnRepresentable.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorQueryType.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorRecord.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorRecordSchema.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Attribute.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AttributeKey.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AttributeValue.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/AdaptorRecordDecoder.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableEntity.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 Compiling\ CodableModel.swift,\ CodableModelDecoder.swift,\ CodableModelEntityDecoder.swift,\ CodableModelPostProcessor.swift,\ CodableRelationship.swift,\ EntityPropertyReflectionContainer.swift,\ CodeAttribute.swift,\ CodeEntity.swift,\ CodeRelationship.swift,\ CodeValueAttribute.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModel.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModelDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModelEntityDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModelPostProcessor.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableRelationship.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/EntityPropertyReflectionContainer.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/CodeAttribute.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/CodeEntity.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/CodeRelationship.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/CodeValueAttribute.swift (in target 'ZeeQL' from project 'ZeeQL3')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModel.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModelDecoder.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModelEntityDecoder.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModelPostProcessor.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableRelationship.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/EntityPropertyReflectionContainer.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/CodeAttribute.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/CodeEntity.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/CodeRelationship.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/CodeValueAttribute.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 Compiling\ AccessDataSource.swift,\ AccessDataSourceError.swift,\ AccessDataSourceFinders.swift,\ ActiveDataSource.swift,\ ActiveRecord.swift,\ ActiveRecordType.swift,\ Adaptor.swift,\ AdaptorChannel.swift,\ AdaptorChannelPool.swift,\ AdaptorDataSource.swift,\ AdaptorError.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceFinders.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/ActiveDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/ActiveRecord.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/ActiveRecordType.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Adaptor.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorChannel.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorChannelPool.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorError.swift (in target 'ZeeQL' from project 'ZeeQL3')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSource.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceFinders.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/ActiveDataSource.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/ActiveRecord.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/ActiveRecordType.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Adaptor.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorChannel.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorChannelPool.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorDataSource.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorError.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 Compiling\ Database.swift,\ DatabaseChannel.swift,\ DatabaseChannelBase.swift,\ DatabaseChannelFetchHelper.swift,\ DatabaseContext.swift,\ DatabaseDataSource.swift,\ DatabaseObject.swift,\ DatabaseOperation.swift,\ Entity.swift,\ FancyModelMaker.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Database.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/DatabaseChannel.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/DatabaseChannelBase.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/DatabaseChannelFetchHelper.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/DatabaseContext.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/DatabaseDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/DatabaseObject.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/DatabaseOperation.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Entity.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/FancyModelMaker.swift (in target 'ZeeQL' from project 'ZeeQL3')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Database.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/DatabaseChannel.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/DatabaseChannelBase.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/DatabaseChannelFetchHelper.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/DatabaseContext.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/DatabaseDataSource.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/DatabaseObject.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/DatabaseOperation.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Entity.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/FancyModelMaker.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 Compiling\ Join.swift,\ MirrorHelpers.swift,\ Model.swift,\ ModelLoader.swift,\ ModelPattern.swift,\ ModelSQLizer.swift,\ Property.swift,\ Relationship.swift,\ SQLAttributeChange.swift,\ SQLExpression.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Join.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/MirrorHelpers.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Model.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/ModelLoader.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/ModelPattern.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/ModelSQLizer.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Property.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Relationship.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/SQLAttributeChange.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/SQLExpression.swift (in target 'ZeeQL' from project 'ZeeQL3')
Failed frontend command:
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceError.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AccessDataSourceFinders.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/ActiveDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/ActiveRecord.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/ActiveRecordType.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Adaptor.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorChannel.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorChannelPool.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorError.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorModelFetch.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorOperation.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorQueryColumnRepresentable.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorQueryType.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorRecord.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AdaptorRecordSchema.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Attribute.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AttributeKey.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/AttributeValue.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/AdaptorRecordDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableEntity.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModel.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModelDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModelEntityDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModelPostProcessor.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableRelationship.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/EntityPropertyReflectionContainer.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/CodeAttribute.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/CodeEntity.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/CodeRelationship.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/CodeValueAttribute.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Database.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/DatabaseChannel.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/DatabaseChannelBase.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/DatabaseChannelFetchHelper.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/DatabaseContext.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/DatabaseDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/DatabaseObject.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/DatabaseOperation.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Entity.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/FancyModelMaker.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Join.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/MirrorHelpers.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Model.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/ModelLoader.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/ModelPattern.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/ModelSQLizer.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Property.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Relationship.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/SQLAttributeChange.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/SQLExpression.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/SQLExpressionFactory.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/SQLForeignKey.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/SQLTableGroups.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/SchemaGeneration.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/SchemaSynchronization.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/SchemaSynchronizationFactory.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/TypedDatabaseChannel.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/TypedFetchSpecification.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/ZeeQLTypes.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/ArrayDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/BooleanQualifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/ComparisonOperation.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/CompoundQualifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/Constant.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/DataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/EntityType+Builder.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/EntityType.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/Expression.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/ExpressionEvaluation.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/FetchSpecification+Builder.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/FetchSpecification.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/GlobalID.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/Key.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/KeyComparisonQualifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/KeyValueQualifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/ModelFetchSpecification.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/NotQualifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/ObjectStore.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/ObjectTrackingContext.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/Qualifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/QualifierEvaluation.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/QualifierParser.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/QualifierVariable.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/SQLQualifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/SortOrdering.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/StoreKeyValueCoding.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/AnyOptional.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/Dictionary+Extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/EquatableType.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/KeyValueStringFormatter.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/Logger.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/Pluralize.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/SimpleKVC.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/SmartDescription.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/TimeRange.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/SQLite3Adaptor/SQLite3Adaptor.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/SQLite3Adaptor/SQLite3AdaptorChannel.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/SQLite3Adaptor/SQLite3Expression.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/SQLite3Adaptor/SQLite3ModelFetch.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/SQLite3Adaptor/SQLite3SchemaSynchronizationFactory.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZeeQL3.build/Debug-watchos/ZeeQL.build/Objects-normal/arm64_32/supplementaryOutputs-9 -target arm64_32-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZeeQL3.build/Debug-watchos/ZeeQL.build/Objects-normal/arm64_32/ZeeQL_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -empty-abi-descriptor -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/CSQLite3/Sources/CSQLite3/module.modulemap -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZeeQL3.build/Debug-watchos/ZeeQL.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZeeQL3.build/Debug-watchos/ZeeQL.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZeeQL3.build/Debug-watchos/ZeeQL.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZeeQL3.build/Debug-watchos/ZeeQL.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ZeeQL -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.4 -target-sdk-name watchos11.4 -external-plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -in-process-plugin-server-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/libSwiftInProcPluginServer.dylib -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZeeQL3.build/Debug-watchos/ZeeQL.build/Objects-normal/arm64_32/Join.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZeeQL3.build/Debug-watchos/ZeeQL.build/Objects-normal/arm64_32/MirrorHelpers.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZeeQL3.build/Debug-watchos/ZeeQL.build/Objects-normal/arm64_32/Model.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZeeQL3.build/Debug-watchos/ZeeQL.build/Objects-normal/arm64_32/ModelLoader.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZeeQL3.build/Debug-watchos/ZeeQL.build/Objects-normal/arm64_32/ModelPattern.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZeeQL3.build/Debug-watchos/ZeeQL.build/Objects-normal/arm64_32/ModelSQLizer.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZeeQL3.build/Debug-watchos/ZeeQL.build/Objects-normal/arm64_32/Property.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZeeQL3.build/Debug-watchos/ZeeQL.build/Objects-normal/arm64_32/Relationship.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZeeQL3.build/Debug-watchos/ZeeQL.build/Objects-normal/arm64_32/SQLAttributeChange.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZeeQL3.build/Debug-watchos/ZeeQL.build/Objects-normal/arm64_32/SQLExpression.o -index-unit-output-path /ZeeQL3.build/Debug-watchos/ZeeQL.build/Objects-normal/arm64_32/Join.o -index-unit-output-path /ZeeQL3.build/Debug-watchos/ZeeQL.build/Objects-normal/arm64_32/MirrorHelpers.o -index-unit-output-path /ZeeQL3.build/Debug-watchos/ZeeQL.build/Objects-normal/arm64_32/Model.o -index-unit-output-path /ZeeQL3.build/Debug-watchos/ZeeQL.build/Objects-normal/arm64_32/ModelLoader.o -index-unit-output-path /ZeeQL3.build/Debug-watchos/ZeeQL.build/Objects-normal/arm64_32/ModelPattern.o -index-unit-output-path /ZeeQL3.build/Debug-watchos/ZeeQL.build/Objects-normal/arm64_32/ModelSQLizer.o -index-unit-output-path /ZeeQL3.build/Debug-watchos/ZeeQL.build/Objects-normal/arm64_32/Property.o -index-unit-output-path /ZeeQL3.build/Debug-watchos/ZeeQL.build/Objects-normal/arm64_32/Relationship.o -index-unit-output-path /ZeeQL3.build/Debug-watchos/ZeeQL.build/Objects-normal/arm64_32/SQLAttributeChange.o -index-unit-output-path /ZeeQL3.build/Debug-watchos/ZeeQL.build/Objects-normal/arm64_32/SQLExpression.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Join.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/MirrorHelpers.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Model.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/ModelLoader.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/ModelLoader.swift:1549:39: error: value of type 'XMLNode' has no member 'kind'
    for child in children where child.kind == .text {
                                ~~~~~ ^~~~
/Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/ModelLoader.swift:1549:48: error: cannot infer contextual base in reference to member 'text'
    for child in children where child.kind == .text {
                                              ~^~~~
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/ModelPattern.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/ModelSQLizer.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Property.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Relationship.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/SQLAttributeChange.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/SQLExpression.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 Compiling\ SQLExpressionFactory.swift,\ SQLForeignKey.swift,\ SQLTableGroups.swift,\ SchemaGeneration.swift,\ SchemaSynchronization.swift,\ SchemaSynchronizationFactory.swift,\ TypedDatabaseChannel.swift,\ TypedFetchSpecification.swift,\ ZeeQLTypes.swift,\ ArrayDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/SQLExpressionFactory.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/SQLForeignKey.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/SQLTableGroups.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/SchemaGeneration.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/SchemaSynchronization.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/SchemaSynchronizationFactory.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/TypedDatabaseChannel.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/TypedFetchSpecification.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/ZeeQLTypes.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/ArrayDataSource.swift (in target 'ZeeQL' from project 'ZeeQL3')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/SQLExpressionFactory.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/SQLForeignKey.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/SQLTableGroups.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/SchemaGeneration.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/SchemaSynchronization.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/SchemaSynchronizationFactory.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/TypedDatabaseChannel.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/TypedFetchSpecification.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/ZeeQLTypes.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/ArrayDataSource.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 Compiling\ BooleanQualifier.swift,\ ComparisonOperation.swift,\ CompoundQualifier.swift,\ Constant.swift,\ DataSource.swift,\ EntityType+Builder.swift,\ EntityType.swift,\ Expression.swift,\ ExpressionEvaluation.swift,\ FetchSpecification+Builder.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/BooleanQualifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/ComparisonOperation.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/CompoundQualifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/Constant.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/DataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/EntityType+Builder.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/EntityType.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/Expression.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/ExpressionEvaluation.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/FetchSpecification+Builder.swift (in target 'ZeeQL' from project 'ZeeQL3')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/BooleanQualifier.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/ComparisonOperation.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/CompoundQualifier.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/Constant.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/DataSource.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/EntityType+Builder.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/EntityType.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/Expression.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/ExpressionEvaluation.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/FetchSpecification+Builder.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 Compiling\ Logger.swift,\ Pluralize.swift,\ SimpleKVC.swift,\ SmartDescription.swift,\ TimeRange.swift,\ SQLite3Adaptor.swift,\ SQLite3AdaptorChannel.swift,\ SQLite3Expression.swift,\ SQLite3ModelFetch.swift,\ SQLite3SchemaSynchronizationFactory.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/Logger.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/Pluralize.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/SimpleKVC.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/SmartDescription.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/TimeRange.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/SQLite3Adaptor/SQLite3Adaptor.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/SQLite3Adaptor/SQLite3AdaptorChannel.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/SQLite3Adaptor/SQLite3Expression.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/SQLite3Adaptor/SQLite3ModelFetch.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/SQLite3Adaptor/SQLite3SchemaSynchronizationFactory.swift (in target 'ZeeQL' from project 'ZeeQL3')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/Logger.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/Pluralize.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/SimpleKVC.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/SmartDescription.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Foundation/TimeRange.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/SQLite3Adaptor/SQLite3Adaptor.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/SQLite3Adaptor/SQLite3AdaptorChannel.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/SQLite3Adaptor/SQLite3Expression.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/SQLite3Adaptor/SQLite3ModelFetch.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/SQLite3Adaptor/SQLite3SchemaSynchronizationFactory.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 Compiling\ FetchSpecification.swift,\ GlobalID.swift,\ Key.swift,\ KeyComparisonQualifier.swift,\ KeyValueQualifier.swift,\ ModelFetchSpecification.swift,\ NotQualifier.swift,\ ObjectStore.swift,\ ObjectTrackingContext.swift,\ Qualifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/FetchSpecification.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/GlobalID.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/Key.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/KeyComparisonQualifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/KeyValueQualifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/ModelFetchSpecification.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/NotQualifier.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/ObjectStore.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/ObjectTrackingContext.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/Qualifier.swift (in target 'ZeeQL' from project 'ZeeQL3')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/FetchSpecification.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/GlobalID.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/Key.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/KeyComparisonQualifier.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/KeyValueQualifier.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/ModelFetchSpecification.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/NotQualifier.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/ObjectStore.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/ObjectTrackingContext.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Control/Qualifier.swift (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftEmitModule normal arm64 Emitting\ module\ for\ ZeeQL (in target 'ZeeQL' from project 'ZeeQL3')
EmitSwiftModule normal arm64 (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64_32 Compiling BooleanQualifier.swift, ComparisonOperation.swift, CompoundQualifier.swift, Constant.swift, DataSource.swift, EntityType+Builder.swift, EntityType.swift, Expression.swift, ExpressionEvaluation.swift, FetchSpecification+Builder.swift (in target 'ZeeQL' from project 'ZeeQL3')
SwiftEmitModule normal armv7k Emitting\ module\ for\ ZeeQL (in target 'ZeeQL' from project 'ZeeQL3')
EmitSwiftModule normal armv7k (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64_32 Emitting module for ZeeQL (in target 'ZeeQL' from project 'ZeeQL3')
SwiftDriver\ Compilation\ Requirements ZeeQL normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'ZeeQL' from project 'ZeeQL3')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name ZeeQL -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZeeQL3.build/Debug-watchos/ZeeQL.build/Objects-normal/arm64_32/ZeeQL.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/CSQLite3/Sources/CSQLite3/module.modulemap -DXcode -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64_32-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZeeQL3.build/Debug-watchos/ZeeQL.build/Objects-normal/arm64_32/ZeeQL-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZeeQL3.build/Debug-watchos/ZeeQL.build/Objects-normal/arm64_32/ZeeQL.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZeeQL3.build/Debug-watchos/ZeeQL.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZeeQL3.build/Debug-watchos/ZeeQL.build/Objects-normal/arm64_32/ZeeQL_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZeeQL3.build/Debug-watchos/ZeeQL.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZeeQL3.build/Debug-watchos/ZeeQL.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZeeQL3.build/Debug-watchos/ZeeQL.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZeeQL3.build/Debug-watchos/ZeeQL.build/Objects-normal/arm64_32/ZeeQL-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64_32 Compiling AdaptorModelFetch.swift, AdaptorOperation.swift, AdaptorQueryColumnRepresentable.swift, AdaptorQueryType.swift, AdaptorRecord.swift, AdaptorRecordSchema.swift, Attribute.swift, AttributeKey.swift, AttributeValue.swift, AdaptorRecordDecoder.swift, CodableEntity.swift (in target 'ZeeQL' from project 'ZeeQL3')
SwiftCompile normal armv7k Compiling\ Join.swift,\ MirrorHelpers.swift,\ Model.swift,\ ModelLoader.swift,\ ModelPattern.swift,\ ModelSQLizer.swift,\ Property.swift,\ Relationship.swift,\ SQLAttributeChange.swift,\ SQLExpression.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Join.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/MirrorHelpers.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Model.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/ModelLoader.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/ModelPattern.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/ModelSQLizer.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Property.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Relationship.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/SQLAttributeChange.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/SQLExpression.swift (in target 'ZeeQL' from project 'ZeeQL3')
SwiftCompile normal arm64 Compiling\ CodableModel.swift,\ CodableModelDecoder.swift,\ CodableModelEntityDecoder.swift,\ CodableModelPostProcessor.swift,\ CodableRelationship.swift,\ EntityPropertyReflectionContainer.swift,\ CodeAttribute.swift,\ CodeEntity.swift,\ CodeRelationship.swift,\ CodeValueAttribute.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModel.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModelDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModelEntityDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModelPostProcessor.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableRelationship.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/EntityPropertyReflectionContainer.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/CodeAttribute.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/CodeEntity.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/CodeRelationship.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/CodeValueAttribute.swift (in target 'ZeeQL' from project 'ZeeQL3')
Command SwiftCompile failed with a nonzero exit code
** BUILD FAILED **
The following build commands failed:
	SwiftCompile normal arm64_32 Compiling\ Join.swift,\ MirrorHelpers.swift,\ Model.swift,\ ModelLoader.swift,\ ModelPattern.swift,\ ModelSQLizer.swift,\ Property.swift,\ Relationship.swift,\ SQLAttributeChange.swift,\ SQLExpression.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Join.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/MirrorHelpers.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Model.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/ModelLoader.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/ModelPattern.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/ModelSQLizer.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Property.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Relationship.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/SQLAttributeChange.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/SQLExpression.swift (in target 'ZeeQL' from project 'ZeeQL3')
	SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/ModelLoader.swift (in target 'ZeeQL' from project 'ZeeQL3')
	SwiftCompile normal arm64 Compiling\ CodableModel.swift,\ CodableModelDecoder.swift,\ CodableModelEntityDecoder.swift,\ CodableModelPostProcessor.swift,\ CodableRelationship.swift,\ EntityPropertyReflectionContainer.swift,\ CodeAttribute.swift,\ CodeEntity.swift,\ CodeRelationship.swift,\ CodeValueAttribute.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModel.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModelDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModelEntityDecoder.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableModelPostProcessor.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/CodableRelationship.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/Codable/EntityPropertyReflectionContainer.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/CodeAttribute.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/CodeEntity.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/CodeRelationship.swift /Users/admin/builder/spi-builder-workspace/Sources/ZeeQL/Access/CodeValueAttribute.swift (in target 'ZeeQL' from project 'ZeeQL3')
	Building workspace spi-builder-workspace with scheme ZeeQL3
(4 failures)
BUILD FAILURE 6.1 watchOS