The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Successful build of SwiftKuery, reference 4.0.0 (b9f535), with Swift 6.0 for Linux on 28 Nov 2024 05:05:32 UTC.

Swift 6 data race errors: 28

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures 2>&1

Build Log

 38 |
 39 |     /// The number of rows to skip.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:41:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 39 |     /// The number of rows to skip.
 40 |     /// If specified, corresponds to the SQL SELECT OFFSET clause.
 41 |     public private (set) var offset: Int?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 42 |
 43 |     /// An array containing `OrderBy` elements to sort the selected rows.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:45:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 43 |     /// An array containing `OrderBy` elements to sort the selected rows.
 44 |     /// The SQL ORDER BY keyword.
 45 |     public private (set) var orderBy: [OrderBy]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 46 |
 47 |     /// An array containing `Column` elements to group the selected rows.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:49:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 47 |     /// An array containing `Column` elements to group the selected rows.
 48 |     /// The SQL GROUP BY statement.
 49 |     public private (set) var groupBy: [Column]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 50 |
 51 |     /// The SQL HAVING clause containing the filter for the rows to select when aggregate functions are used.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:53:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 51 |     /// The SQL HAVING clause containing the filter for the rows to select when aggregate functions are used.
 52 |     /// Could be represented with a `Having` clause or a `String` containing raw SQL.
 53 |     public private (set) var havingClause: QueryHavingProtocol?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     /// The SQL UNION clauses.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:56:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     /// The SQL UNION clauses.
 56 |     public private (set) var unions: [Union]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 57 |
 58 |     /// The SQL JOIN, ON and USING clauses.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:61:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 59 |     /// ON clause can be represented as `Filter` or a `String` containing raw SQL.
 60 |     /// USING clause: an array of `Column` elements that have to match in a JOIN query.
 61 |     public private (set) var joins = [(join: Join, on: QueryFilterProtocol?, using: [Column]?)]()
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 62 |
 63 |     /// An array of `AuxiliaryTable` which will be used in a query with a WITH clause.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:64:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 62 |
 63 |     /// An array of `AuxiliaryTable` which will be used in a query with a WITH clause.
 64 |     public private (set) var with: [AuxiliaryTable]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 65 |
 66 |     private var syntaxError = ""
/host/spi-builder-workspace/Sources/SwiftKuery/Table.swift:41:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 39 |     // MARK: Parameters
 40 |     /// The columns inside the table.
 41 |     public private (set) var columns: [Column]
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 42 |     private var columnsWithPrimaryKeyProperty = 0
 43 |
/host/spi-builder-workspace/Sources/SwiftKuery/Table.swift:45:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 43 |
 44 |     /// The alias of the table.
 45 |     public private (set) var alias: String?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 46 |
 47 |     private var primaryKey: [Column]?
/host/spi-builder-workspace/Sources/SwiftKuery/Parameter.swift:22:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
20 | public struct Parameter: Buildable {
21 |     /// An optional name of the parameter.
22 |     public private (set) var name: String?
   |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
23 |
24 |     /// Initialize an instance of Parameter.
[42/63] Compiling SwiftKuery Select.swift
/host/spi-builder-workspace/Sources/SwiftKuery/ScalarColumnExpression.swift:26:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 24 |
 25 |     /// The scalar function to apply.
 26 |     public private (set) var function: ScalarFunction
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |
 28 |     init(_ function: ScalarFunction) {
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:29:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |     /// The SQL WHERE clause containing the filter for rows to retrieve.
 28 |     /// Could be represented with a `Filter` clause or a `String` containing raw SQL.
 29 |     public private (set) var whereClause: QueryFilterProtocol?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 30 |
 31 |     /// A boolean indicating whether the selected values have to be distinct.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:33:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 31 |     /// A boolean indicating whether the selected values have to be distinct.
 32 |     /// If true, corresponds to the SQL SELECT DISTINCT statement.
 33 |     public private (set) var distinct = false
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |     /// The number of rows to select.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:37:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 35 |     /// The number of rows to select.
 36 |     /// If specified, corresponds to the SQL SELECT TOP/LIMIT clause.
 37 |     public private (set) var rowsToReturn: Int?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 38 |
 39 |     /// The number of rows to skip.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:41:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 39 |     /// The number of rows to skip.
 40 |     /// If specified, corresponds to the SQL SELECT OFFSET clause.
 41 |     public private (set) var offset: Int?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 42 |
 43 |     /// An array containing `OrderBy` elements to sort the selected rows.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:45:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 43 |     /// An array containing `OrderBy` elements to sort the selected rows.
 44 |     /// The SQL ORDER BY keyword.
 45 |     public private (set) var orderBy: [OrderBy]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 46 |
 47 |     /// An array containing `Column` elements to group the selected rows.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:49:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 47 |     /// An array containing `Column` elements to group the selected rows.
 48 |     /// The SQL GROUP BY statement.
 49 |     public private (set) var groupBy: [Column]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 50 |
 51 |     /// The SQL HAVING clause containing the filter for the rows to select when aggregate functions are used.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:53:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 51 |     /// The SQL HAVING clause containing the filter for the rows to select when aggregate functions are used.
 52 |     /// Could be represented with a `Having` clause or a `String` containing raw SQL.
 53 |     public private (set) var havingClause: QueryHavingProtocol?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     /// The SQL UNION clauses.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:56:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     /// The SQL UNION clauses.
 56 |     public private (set) var unions: [Union]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 57 |
 58 |     /// The SQL JOIN, ON and USING clauses.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:61:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 59 |     /// ON clause can be represented as `Filter` or a `String` containing raw SQL.
 60 |     /// USING clause: an array of `Column` elements that have to match in a JOIN query.
 61 |     public private (set) var joins = [(join: Join, on: QueryFilterProtocol?, using: [Column]?)]()
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 62 |
 63 |     /// An array of `AuxiliaryTable` which will be used in a query with a WITH clause.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:64:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 62 |
 63 |     /// An array of `AuxiliaryTable` which will be used in a query with a WITH clause.
 64 |     public private (set) var with: [AuxiliaryTable]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 65 |
 66 |     private var syntaxError = ""
/host/spi-builder-workspace/Sources/SwiftKuery/Table.swift:41:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 39 |     // MARK: Parameters
 40 |     /// The columns inside the table.
 41 |     public private (set) var columns: [Column]
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 42 |     private var columnsWithPrimaryKeyProperty = 0
 43 |
/host/spi-builder-workspace/Sources/SwiftKuery/Table.swift:45:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 43 |
 44 |     /// The alias of the table.
 45 |     public private (set) var alias: String?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 46 |
 47 |     private var primaryKey: [Column]?
/host/spi-builder-workspace/Sources/SwiftKuery/Parameter.swift:22:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
20 | public struct Parameter: Buildable {
21 |     /// An optional name of the parameter.
22 |     public private (set) var name: String?
   |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
23 |
24 |     /// Initialize an instance of Parameter.
[43/63] Compiling SwiftKuery SpecialOperators_Extensions.swift
/host/spi-builder-workspace/Sources/SwiftKuery/ScalarColumnExpression.swift:26:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 24 |
 25 |     /// The scalar function to apply.
 26 |     public private (set) var function: ScalarFunction
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |
 28 |     init(_ function: ScalarFunction) {
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:29:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |     /// The SQL WHERE clause containing the filter for rows to retrieve.
 28 |     /// Could be represented with a `Filter` clause or a `String` containing raw SQL.
 29 |     public private (set) var whereClause: QueryFilterProtocol?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 30 |
 31 |     /// A boolean indicating whether the selected values have to be distinct.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:33:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 31 |     /// A boolean indicating whether the selected values have to be distinct.
 32 |     /// If true, corresponds to the SQL SELECT DISTINCT statement.
 33 |     public private (set) var distinct = false
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |     /// The number of rows to select.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:37:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 35 |     /// The number of rows to select.
 36 |     /// If specified, corresponds to the SQL SELECT TOP/LIMIT clause.
 37 |     public private (set) var rowsToReturn: Int?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 38 |
 39 |     /// The number of rows to skip.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:41:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 39 |     /// The number of rows to skip.
 40 |     /// If specified, corresponds to the SQL SELECT OFFSET clause.
 41 |     public private (set) var offset: Int?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 42 |
 43 |     /// An array containing `OrderBy` elements to sort the selected rows.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:45:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 43 |     /// An array containing `OrderBy` elements to sort the selected rows.
 44 |     /// The SQL ORDER BY keyword.
 45 |     public private (set) var orderBy: [OrderBy]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 46 |
 47 |     /// An array containing `Column` elements to group the selected rows.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:49:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 47 |     /// An array containing `Column` elements to group the selected rows.
 48 |     /// The SQL GROUP BY statement.
 49 |     public private (set) var groupBy: [Column]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 50 |
 51 |     /// The SQL HAVING clause containing the filter for the rows to select when aggregate functions are used.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:53:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 51 |     /// The SQL HAVING clause containing the filter for the rows to select when aggregate functions are used.
 52 |     /// Could be represented with a `Having` clause or a `String` containing raw SQL.
 53 |     public private (set) var havingClause: QueryHavingProtocol?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     /// The SQL UNION clauses.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:56:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     /// The SQL UNION clauses.
 56 |     public private (set) var unions: [Union]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 57 |
 58 |     /// The SQL JOIN, ON and USING clauses.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:61:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 59 |     /// ON clause can be represented as `Filter` or a `String` containing raw SQL.
 60 |     /// USING clause: an array of `Column` elements that have to match in a JOIN query.
 61 |     public private (set) var joins = [(join: Join, on: QueryFilterProtocol?, using: [Column]?)]()
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 62 |
 63 |     /// An array of `AuxiliaryTable` which will be used in a query with a WITH clause.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:64:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 62 |
 63 |     /// An array of `AuxiliaryTable` which will be used in a query with a WITH clause.
 64 |     public private (set) var with: [AuxiliaryTable]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 65 |
 66 |     private var syntaxError = ""
/host/spi-builder-workspace/Sources/SwiftKuery/Table.swift:41:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 39 |     // MARK: Parameters
 40 |     /// The columns inside the table.
 41 |     public private (set) var columns: [Column]
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 42 |     private var columnsWithPrimaryKeyProperty = 0
 43 |
/host/spi-builder-workspace/Sources/SwiftKuery/Table.swift:45:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 43 |
 44 |     /// The alias of the table.
 45 |     public private (set) var alias: String?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 46 |
 47 |     private var primaryKey: [Column]?
/host/spi-builder-workspace/Sources/SwiftKuery/Parameter.swift:22:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
20 | public struct Parameter: Buildable {
21 |     /// An optional name of the parameter.
22 |     public private (set) var name: String?
   |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
23 |
24 |     /// Initialize an instance of Parameter.
[44/63] Compiling SwiftKuery String+Buildable.swift
/host/spi-builder-workspace/Sources/SwiftKuery/ScalarColumnExpression.swift:26:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 24 |
 25 |     /// The scalar function to apply.
 26 |     public private (set) var function: ScalarFunction
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |
 28 |     init(_ function: ScalarFunction) {
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:29:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |     /// The SQL WHERE clause containing the filter for rows to retrieve.
 28 |     /// Could be represented with a `Filter` clause or a `String` containing raw SQL.
 29 |     public private (set) var whereClause: QueryFilterProtocol?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 30 |
 31 |     /// A boolean indicating whether the selected values have to be distinct.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:33:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 31 |     /// A boolean indicating whether the selected values have to be distinct.
 32 |     /// If true, corresponds to the SQL SELECT DISTINCT statement.
 33 |     public private (set) var distinct = false
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |     /// The number of rows to select.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:37:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 35 |     /// The number of rows to select.
 36 |     /// If specified, corresponds to the SQL SELECT TOP/LIMIT clause.
 37 |     public private (set) var rowsToReturn: Int?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 38 |
 39 |     /// The number of rows to skip.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:41:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 39 |     /// The number of rows to skip.
 40 |     /// If specified, corresponds to the SQL SELECT OFFSET clause.
 41 |     public private (set) var offset: Int?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 42 |
 43 |     /// An array containing `OrderBy` elements to sort the selected rows.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:45:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 43 |     /// An array containing `OrderBy` elements to sort the selected rows.
 44 |     /// The SQL ORDER BY keyword.
 45 |     public private (set) var orderBy: [OrderBy]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 46 |
 47 |     /// An array containing `Column` elements to group the selected rows.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:49:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 47 |     /// An array containing `Column` elements to group the selected rows.
 48 |     /// The SQL GROUP BY statement.
 49 |     public private (set) var groupBy: [Column]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 50 |
 51 |     /// The SQL HAVING clause containing the filter for the rows to select when aggregate functions are used.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:53:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 51 |     /// The SQL HAVING clause containing the filter for the rows to select when aggregate functions are used.
 52 |     /// Could be represented with a `Having` clause or a `String` containing raw SQL.
 53 |     public private (set) var havingClause: QueryHavingProtocol?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     /// The SQL UNION clauses.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:56:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     /// The SQL UNION clauses.
 56 |     public private (set) var unions: [Union]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 57 |
 58 |     /// The SQL JOIN, ON and USING clauses.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:61:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 59 |     /// ON clause can be represented as `Filter` or a `String` containing raw SQL.
 60 |     /// USING clause: an array of `Column` elements that have to match in a JOIN query.
 61 |     public private (set) var joins = [(join: Join, on: QueryFilterProtocol?, using: [Column]?)]()
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 62 |
 63 |     /// An array of `AuxiliaryTable` which will be used in a query with a WITH clause.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:64:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 62 |
 63 |     /// An array of `AuxiliaryTable` which will be used in a query with a WITH clause.
 64 |     public private (set) var with: [AuxiliaryTable]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 65 |
 66 |     private var syntaxError = ""
/host/spi-builder-workspace/Sources/SwiftKuery/Table.swift:41:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 39 |     // MARK: Parameters
 40 |     /// The columns inside the table.
 41 |     public private (set) var columns: [Column]
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 42 |     private var columnsWithPrimaryKeyProperty = 0
 43 |
/host/spi-builder-workspace/Sources/SwiftKuery/Table.swift:45:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 43 |
 44 |     /// The alias of the table.
 45 |     public private (set) var alias: String?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 46 |
 47 |     private var primaryKey: [Column]?
/host/spi-builder-workspace/Sources/SwiftKuery/Parameter.swift:22:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
20 | public struct Parameter: Buildable {
21 |     /// An optional name of the parameter.
22 |     public private (set) var name: String?
   |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
23 |
24 |     /// Initialize an instance of Parameter.
[45/63] Compiling SwiftKuery Field.swift
/host/spi-builder-workspace/Sources/SwiftKuery/Table.swift:41:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 39 |     // MARK: Parameters
 40 |     /// The columns inside the table.
 41 |     public private (set) var columns: [Column]
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 42 |     private var columnsWithPrimaryKeyProperty = 0
 43 |
/host/spi-builder-workspace/Sources/SwiftKuery/Table.swift:45:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 43 |
 44 |     /// The alias of the table.
 45 |     public private (set) var alias: String?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 46 |
 47 |     private var primaryKey: [Column]?
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:29:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |     /// The SQL WHERE clause containing the filter for rows to retrieve.
 28 |     /// Could be represented with a `Filter` clause or a `String` containing raw SQL.
 29 |     public private (set) var whereClause: QueryFilterProtocol?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 30 |
 31 |     /// A boolean indicating whether the selected values have to be distinct.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:33:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 31 |     /// A boolean indicating whether the selected values have to be distinct.
 32 |     /// If true, corresponds to the SQL SELECT DISTINCT statement.
 33 |     public private (set) var distinct = false
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |     /// The number of rows to select.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:37:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 35 |     /// The number of rows to select.
 36 |     /// If specified, corresponds to the SQL SELECT TOP/LIMIT clause.
 37 |     public private (set) var rowsToReturn: Int?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 38 |
 39 |     /// The number of rows to skip.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:41:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 39 |     /// The number of rows to skip.
 40 |     /// If specified, corresponds to the SQL SELECT OFFSET clause.
 41 |     public private (set) var offset: Int?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 42 |
 43 |     /// An array containing `OrderBy` elements to sort the selected rows.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:45:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 43 |     /// An array containing `OrderBy` elements to sort the selected rows.
 44 |     /// The SQL ORDER BY keyword.
 45 |     public private (set) var orderBy: [OrderBy]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 46 |
 47 |     /// An array containing `Column` elements to group the selected rows.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:49:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 47 |     /// An array containing `Column` elements to group the selected rows.
 48 |     /// The SQL GROUP BY statement.
 49 |     public private (set) var groupBy: [Column]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 50 |
 51 |     /// The SQL HAVING clause containing the filter for the rows to select when aggregate functions are used.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:53:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 51 |     /// The SQL HAVING clause containing the filter for the rows to select when aggregate functions are used.
 52 |     /// Could be represented with a `Having` clause or a `String` containing raw SQL.
 53 |     public private (set) var havingClause: QueryHavingProtocol?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     /// The SQL UNION clauses.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:56:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     /// The SQL UNION clauses.
 56 |     public private (set) var unions: [Union]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 57 |
 58 |     /// The SQL JOIN, ON and USING clauses.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:61:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 59 |     /// ON clause can be represented as `Filter` or a `String` containing raw SQL.
 60 |     /// USING clause: an array of `Column` elements that have to match in a JOIN query.
 61 |     public private (set) var joins = [(join: Join, on: QueryFilterProtocol?, using: [Column]?)]()
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 62 |
 63 |     /// An array of `AuxiliaryTable` which will be used in a query with a WITH clause.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:64:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 62 |
 63 |     /// An array of `AuxiliaryTable` which will be used in a query with a WITH clause.
 64 |     public private (set) var with: [AuxiliaryTable]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 65 |
 66 |     private var syntaxError = ""
/host/spi-builder-workspace/Sources/SwiftKuery/ScalarColumnExpression.swift:26:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 24 |
 25 |     /// The scalar function to apply.
 26 |     public private (set) var function: ScalarFunction
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |
 28 |     init(_ function: ScalarFunction) {
/host/spi-builder-workspace/Sources/SwiftKuery/Parameter.swift:22:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
20 | public struct Parameter: Buildable {
21 |     /// An optional name of the parameter.
22 |     public private (set) var name: String?
   |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
23 |
24 |     /// Initialize an instance of Parameter.
/host/spi-builder-workspace/Sources/SwiftKuery/AggregateColumnExpression.swift:26:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 24 |
 25 |     /// The aggregate function to apply.
 26 |     public private (set) var function: AggregateFunction
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |
 28 |     init(_ function: AggregateFunction) {
[46/63] Compiling SwiftKuery Filter.swift
/host/spi-builder-workspace/Sources/SwiftKuery/Table.swift:41:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 39 |     // MARK: Parameters
 40 |     /// The columns inside the table.
 41 |     public private (set) var columns: [Column]
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 42 |     private var columnsWithPrimaryKeyProperty = 0
 43 |
/host/spi-builder-workspace/Sources/SwiftKuery/Table.swift:45:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 43 |
 44 |     /// The alias of the table.
 45 |     public private (set) var alias: String?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 46 |
 47 |     private var primaryKey: [Column]?
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:29:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |     /// The SQL WHERE clause containing the filter for rows to retrieve.
 28 |     /// Could be represented with a `Filter` clause or a `String` containing raw SQL.
 29 |     public private (set) var whereClause: QueryFilterProtocol?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 30 |
 31 |     /// A boolean indicating whether the selected values have to be distinct.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:33:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 31 |     /// A boolean indicating whether the selected values have to be distinct.
 32 |     /// If true, corresponds to the SQL SELECT DISTINCT statement.
 33 |     public private (set) var distinct = false
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |     /// The number of rows to select.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:37:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 35 |     /// The number of rows to select.
 36 |     /// If specified, corresponds to the SQL SELECT TOP/LIMIT clause.
 37 |     public private (set) var rowsToReturn: Int?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 38 |
 39 |     /// The number of rows to skip.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:41:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 39 |     /// The number of rows to skip.
 40 |     /// If specified, corresponds to the SQL SELECT OFFSET clause.
 41 |     public private (set) var offset: Int?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 42 |
 43 |     /// An array containing `OrderBy` elements to sort the selected rows.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:45:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 43 |     /// An array containing `OrderBy` elements to sort the selected rows.
 44 |     /// The SQL ORDER BY keyword.
 45 |     public private (set) var orderBy: [OrderBy]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 46 |
 47 |     /// An array containing `Column` elements to group the selected rows.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:49:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 47 |     /// An array containing `Column` elements to group the selected rows.
 48 |     /// The SQL GROUP BY statement.
 49 |     public private (set) var groupBy: [Column]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 50 |
 51 |     /// The SQL HAVING clause containing the filter for the rows to select when aggregate functions are used.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:53:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 51 |     /// The SQL HAVING clause containing the filter for the rows to select when aggregate functions are used.
 52 |     /// Could be represented with a `Having` clause or a `String` containing raw SQL.
 53 |     public private (set) var havingClause: QueryHavingProtocol?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     /// The SQL UNION clauses.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:56:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     /// The SQL UNION clauses.
 56 |     public private (set) var unions: [Union]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 57 |
 58 |     /// The SQL JOIN, ON and USING clauses.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:61:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 59 |     /// ON clause can be represented as `Filter` or a `String` containing raw SQL.
 60 |     /// USING clause: an array of `Column` elements that have to match in a JOIN query.
 61 |     public private (set) var joins = [(join: Join, on: QueryFilterProtocol?, using: [Column]?)]()
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 62 |
 63 |     /// An array of `AuxiliaryTable` which will be used in a query with a WITH clause.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:64:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 62 |
 63 |     /// An array of `AuxiliaryTable` which will be used in a query with a WITH clause.
 64 |     public private (set) var with: [AuxiliaryTable]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 65 |
 66 |     private var syntaxError = ""
/host/spi-builder-workspace/Sources/SwiftKuery/ScalarColumnExpression.swift:26:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 24 |
 25 |     /// The scalar function to apply.
 26 |     public private (set) var function: ScalarFunction
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |
 28 |     init(_ function: ScalarFunction) {
/host/spi-builder-workspace/Sources/SwiftKuery/Parameter.swift:22:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
20 | public struct Parameter: Buildable {
21 |     /// An optional name of the parameter.
22 |     public private (set) var name: String?
   |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
23 |
24 |     /// Initialize an instance of Parameter.
/host/spi-builder-workspace/Sources/SwiftKuery/AggregateColumnExpression.swift:26:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 24 |
 25 |     /// The aggregate function to apply.
 26 |     public private (set) var function: AggregateFunction
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |
 28 |     init(_ function: AggregateFunction) {
[47/63] Compiling SwiftKuery FilterAndHaving_Extensions.swift
/host/spi-builder-workspace/Sources/SwiftKuery/Table.swift:41:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 39 |     // MARK: Parameters
 40 |     /// The columns inside the table.
 41 |     public private (set) var columns: [Column]
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 42 |     private var columnsWithPrimaryKeyProperty = 0
 43 |
/host/spi-builder-workspace/Sources/SwiftKuery/Table.swift:45:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 43 |
 44 |     /// The alias of the table.
 45 |     public private (set) var alias: String?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 46 |
 47 |     private var primaryKey: [Column]?
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:29:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |     /// The SQL WHERE clause containing the filter for rows to retrieve.
 28 |     /// Could be represented with a `Filter` clause or a `String` containing raw SQL.
 29 |     public private (set) var whereClause: QueryFilterProtocol?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 30 |
 31 |     /// A boolean indicating whether the selected values have to be distinct.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:33:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 31 |     /// A boolean indicating whether the selected values have to be distinct.
 32 |     /// If true, corresponds to the SQL SELECT DISTINCT statement.
 33 |     public private (set) var distinct = false
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |     /// The number of rows to select.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:37:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 35 |     /// The number of rows to select.
 36 |     /// If specified, corresponds to the SQL SELECT TOP/LIMIT clause.
 37 |     public private (set) var rowsToReturn: Int?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 38 |
 39 |     /// The number of rows to skip.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:41:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 39 |     /// The number of rows to skip.
 40 |     /// If specified, corresponds to the SQL SELECT OFFSET clause.
 41 |     public private (set) var offset: Int?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 42 |
 43 |     /// An array containing `OrderBy` elements to sort the selected rows.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:45:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 43 |     /// An array containing `OrderBy` elements to sort the selected rows.
 44 |     /// The SQL ORDER BY keyword.
 45 |     public private (set) var orderBy: [OrderBy]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 46 |
 47 |     /// An array containing `Column` elements to group the selected rows.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:49:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 47 |     /// An array containing `Column` elements to group the selected rows.
 48 |     /// The SQL GROUP BY statement.
 49 |     public private (set) var groupBy: [Column]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 50 |
 51 |     /// The SQL HAVING clause containing the filter for the rows to select when aggregate functions are used.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:53:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 51 |     /// The SQL HAVING clause containing the filter for the rows to select when aggregate functions are used.
 52 |     /// Could be represented with a `Having` clause or a `String` containing raw SQL.
 53 |     public private (set) var havingClause: QueryHavingProtocol?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     /// The SQL UNION clauses.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:56:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     /// The SQL UNION clauses.
 56 |     public private (set) var unions: [Union]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 57 |
 58 |     /// The SQL JOIN, ON and USING clauses.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:61:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 59 |     /// ON clause can be represented as `Filter` or a `String` containing raw SQL.
 60 |     /// USING clause: an array of `Column` elements that have to match in a JOIN query.
 61 |     public private (set) var joins = [(join: Join, on: QueryFilterProtocol?, using: [Column]?)]()
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 62 |
 63 |     /// An array of `AuxiliaryTable` which will be used in a query with a WITH clause.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:64:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 62 |
 63 |     /// An array of `AuxiliaryTable` which will be used in a query with a WITH clause.
 64 |     public private (set) var with: [AuxiliaryTable]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 65 |
 66 |     private var syntaxError = ""
/host/spi-builder-workspace/Sources/SwiftKuery/ScalarColumnExpression.swift:26:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 24 |
 25 |     /// The scalar function to apply.
 26 |     public private (set) var function: ScalarFunction
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |
 28 |     init(_ function: ScalarFunction) {
/host/spi-builder-workspace/Sources/SwiftKuery/Parameter.swift:22:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
20 | public struct Parameter: Buildable {
21 |     /// An optional name of the parameter.
22 |     public private (set) var name: String?
   |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
23 |
24 |     /// Initialize an instance of Parameter.
/host/spi-builder-workspace/Sources/SwiftKuery/AggregateColumnExpression.swift:26:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 24 |
 25 |     /// The aggregate function to apply.
 26 |     public private (set) var function: AggregateFunction
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |
 28 |     init(_ function: AggregateFunction) {
[48/63] Compiling SwiftKuery FilterAndHaving_GlobalFunctions.swift
/host/spi-builder-workspace/Sources/SwiftKuery/Table.swift:41:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 39 |     // MARK: Parameters
 40 |     /// The columns inside the table.
 41 |     public private (set) var columns: [Column]
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 42 |     private var columnsWithPrimaryKeyProperty = 0
 43 |
/host/spi-builder-workspace/Sources/SwiftKuery/Table.swift:45:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 43 |
 44 |     /// The alias of the table.
 45 |     public private (set) var alias: String?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 46 |
 47 |     private var primaryKey: [Column]?
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:29:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |     /// The SQL WHERE clause containing the filter for rows to retrieve.
 28 |     /// Could be represented with a `Filter` clause or a `String` containing raw SQL.
 29 |     public private (set) var whereClause: QueryFilterProtocol?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 30 |
 31 |     /// A boolean indicating whether the selected values have to be distinct.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:33:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 31 |     /// A boolean indicating whether the selected values have to be distinct.
 32 |     /// If true, corresponds to the SQL SELECT DISTINCT statement.
 33 |     public private (set) var distinct = false
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |     /// The number of rows to select.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:37:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 35 |     /// The number of rows to select.
 36 |     /// If specified, corresponds to the SQL SELECT TOP/LIMIT clause.
 37 |     public private (set) var rowsToReturn: Int?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 38 |
 39 |     /// The number of rows to skip.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:41:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 39 |     /// The number of rows to skip.
 40 |     /// If specified, corresponds to the SQL SELECT OFFSET clause.
 41 |     public private (set) var offset: Int?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 42 |
 43 |     /// An array containing `OrderBy` elements to sort the selected rows.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:45:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 43 |     /// An array containing `OrderBy` elements to sort the selected rows.
 44 |     /// The SQL ORDER BY keyword.
 45 |     public private (set) var orderBy: [OrderBy]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 46 |
 47 |     /// An array containing `Column` elements to group the selected rows.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:49:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 47 |     /// An array containing `Column` elements to group the selected rows.
 48 |     /// The SQL GROUP BY statement.
 49 |     public private (set) var groupBy: [Column]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 50 |
 51 |     /// The SQL HAVING clause containing the filter for the rows to select when aggregate functions are used.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:53:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 51 |     /// The SQL HAVING clause containing the filter for the rows to select when aggregate functions are used.
 52 |     /// Could be represented with a `Having` clause or a `String` containing raw SQL.
 53 |     public private (set) var havingClause: QueryHavingProtocol?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     /// The SQL UNION clauses.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:56:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     /// The SQL UNION clauses.
 56 |     public private (set) var unions: [Union]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 57 |
 58 |     /// The SQL JOIN, ON and USING clauses.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:61:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 59 |     /// ON clause can be represented as `Filter` or a `String` containing raw SQL.
 60 |     /// USING clause: an array of `Column` elements that have to match in a JOIN query.
 61 |     public private (set) var joins = [(join: Join, on: QueryFilterProtocol?, using: [Column]?)]()
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 62 |
 63 |     /// An array of `AuxiliaryTable` which will be used in a query with a WITH clause.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:64:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 62 |
 63 |     /// An array of `AuxiliaryTable` which will be used in a query with a WITH clause.
 64 |     public private (set) var with: [AuxiliaryTable]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 65 |
 66 |     private var syntaxError = ""
/host/spi-builder-workspace/Sources/SwiftKuery/ScalarColumnExpression.swift:26:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 24 |
 25 |     /// The scalar function to apply.
 26 |     public private (set) var function: ScalarFunction
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |
 28 |     init(_ function: ScalarFunction) {
/host/spi-builder-workspace/Sources/SwiftKuery/Parameter.swift:22:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
20 | public struct Parameter: Buildable {
21 |     /// An optional name of the parameter.
22 |     public private (set) var name: String?
   |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
23 |
24 |     /// Initialize an instance of Parameter.
/host/spi-builder-workspace/Sources/SwiftKuery/AggregateColumnExpression.swift:26:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 24 |
 25 |     /// The aggregate function to apply.
 26 |     public private (set) var function: AggregateFunction
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |
 28 |     init(_ function: AggregateFunction) {
[49/63] Compiling SwiftKuery ForeignKey.swift
/host/spi-builder-workspace/Sources/SwiftKuery/Table.swift:41:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 39 |     // MARK: Parameters
 40 |     /// The columns inside the table.
 41 |     public private (set) var columns: [Column]
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 42 |     private var columnsWithPrimaryKeyProperty = 0
 43 |
/host/spi-builder-workspace/Sources/SwiftKuery/Table.swift:45:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 43 |
 44 |     /// The alias of the table.
 45 |     public private (set) var alias: String?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 46 |
 47 |     private var primaryKey: [Column]?
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:29:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |     /// The SQL WHERE clause containing the filter for rows to retrieve.
 28 |     /// Could be represented with a `Filter` clause or a `String` containing raw SQL.
 29 |     public private (set) var whereClause: QueryFilterProtocol?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 30 |
 31 |     /// A boolean indicating whether the selected values have to be distinct.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:33:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 31 |     /// A boolean indicating whether the selected values have to be distinct.
 32 |     /// If true, corresponds to the SQL SELECT DISTINCT statement.
 33 |     public private (set) var distinct = false
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |     /// The number of rows to select.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:37:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 35 |     /// The number of rows to select.
 36 |     /// If specified, corresponds to the SQL SELECT TOP/LIMIT clause.
 37 |     public private (set) var rowsToReturn: Int?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 38 |
 39 |     /// The number of rows to skip.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:41:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 39 |     /// The number of rows to skip.
 40 |     /// If specified, corresponds to the SQL SELECT OFFSET clause.
 41 |     public private (set) var offset: Int?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 42 |
 43 |     /// An array containing `OrderBy` elements to sort the selected rows.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:45:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 43 |     /// An array containing `OrderBy` elements to sort the selected rows.
 44 |     /// The SQL ORDER BY keyword.
 45 |     public private (set) var orderBy: [OrderBy]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 46 |
 47 |     /// An array containing `Column` elements to group the selected rows.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:49:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 47 |     /// An array containing `Column` elements to group the selected rows.
 48 |     /// The SQL GROUP BY statement.
 49 |     public private (set) var groupBy: [Column]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 50 |
 51 |     /// The SQL HAVING clause containing the filter for the rows to select when aggregate functions are used.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:53:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 51 |     /// The SQL HAVING clause containing the filter for the rows to select when aggregate functions are used.
 52 |     /// Could be represented with a `Having` clause or a `String` containing raw SQL.
 53 |     public private (set) var havingClause: QueryHavingProtocol?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     /// The SQL UNION clauses.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:56:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     /// The SQL UNION clauses.
 56 |     public private (set) var unions: [Union]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 57 |
 58 |     /// The SQL JOIN, ON and USING clauses.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:61:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 59 |     /// ON clause can be represented as `Filter` or a `String` containing raw SQL.
 60 |     /// USING clause: an array of `Column` elements that have to match in a JOIN query.
 61 |     public private (set) var joins = [(join: Join, on: QueryFilterProtocol?, using: [Column]?)]()
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 62 |
 63 |     /// An array of `AuxiliaryTable` which will be used in a query with a WITH clause.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:64:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 62 |
 63 |     /// An array of `AuxiliaryTable` which will be used in a query with a WITH clause.
 64 |     public private (set) var with: [AuxiliaryTable]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 65 |
 66 |     private var syntaxError = ""
/host/spi-builder-workspace/Sources/SwiftKuery/ScalarColumnExpression.swift:26:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 24 |
 25 |     /// The scalar function to apply.
 26 |     public private (set) var function: ScalarFunction
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |
 28 |     init(_ function: ScalarFunction) {
/host/spi-builder-workspace/Sources/SwiftKuery/Parameter.swift:22:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
20 | public struct Parameter: Buildable {
21 |     /// An optional name of the parameter.
22 |     public private (set) var name: String?
   |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
23 |
24 |     /// Initialize an instance of Parameter.
/host/spi-builder-workspace/Sources/SwiftKuery/AggregateColumnExpression.swift:26:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 24 |
 25 |     /// The aggregate function to apply.
 26 |     public private (set) var function: AggregateFunction
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |
 28 |     init(_ function: AggregateFunction) {
[50/63] Compiling SwiftKuery Having.swift
/host/spi-builder-workspace/Sources/SwiftKuery/Table.swift:41:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 39 |     // MARK: Parameters
 40 |     /// The columns inside the table.
 41 |     public private (set) var columns: [Column]
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 42 |     private var columnsWithPrimaryKeyProperty = 0
 43 |
/host/spi-builder-workspace/Sources/SwiftKuery/Table.swift:45:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 43 |
 44 |     /// The alias of the table.
 45 |     public private (set) var alias: String?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 46 |
 47 |     private var primaryKey: [Column]?
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:29:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |     /// The SQL WHERE clause containing the filter for rows to retrieve.
 28 |     /// Could be represented with a `Filter` clause or a `String` containing raw SQL.
 29 |     public private (set) var whereClause: QueryFilterProtocol?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 30 |
 31 |     /// A boolean indicating whether the selected values have to be distinct.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:33:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 31 |     /// A boolean indicating whether the selected values have to be distinct.
 32 |     /// If true, corresponds to the SQL SELECT DISTINCT statement.
 33 |     public private (set) var distinct = false
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |     /// The number of rows to select.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:37:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 35 |     /// The number of rows to select.
 36 |     /// If specified, corresponds to the SQL SELECT TOP/LIMIT clause.
 37 |     public private (set) var rowsToReturn: Int?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 38 |
 39 |     /// The number of rows to skip.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:41:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 39 |     /// The number of rows to skip.
 40 |     /// If specified, corresponds to the SQL SELECT OFFSET clause.
 41 |     public private (set) var offset: Int?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 42 |
 43 |     /// An array containing `OrderBy` elements to sort the selected rows.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:45:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 43 |     /// An array containing `OrderBy` elements to sort the selected rows.
 44 |     /// The SQL ORDER BY keyword.
 45 |     public private (set) var orderBy: [OrderBy]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 46 |
 47 |     /// An array containing `Column` elements to group the selected rows.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:49:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 47 |     /// An array containing `Column` elements to group the selected rows.
 48 |     /// The SQL GROUP BY statement.
 49 |     public private (set) var groupBy: [Column]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 50 |
 51 |     /// The SQL HAVING clause containing the filter for the rows to select when aggregate functions are used.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:53:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 51 |     /// The SQL HAVING clause containing the filter for the rows to select when aggregate functions are used.
 52 |     /// Could be represented with a `Having` clause or a `String` containing raw SQL.
 53 |     public private (set) var havingClause: QueryHavingProtocol?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     /// The SQL UNION clauses.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:56:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     /// The SQL UNION clauses.
 56 |     public private (set) var unions: [Union]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 57 |
 58 |     /// The SQL JOIN, ON and USING clauses.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:61:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 59 |     /// ON clause can be represented as `Filter` or a `String` containing raw SQL.
 60 |     /// USING clause: an array of `Column` elements that have to match in a JOIN query.
 61 |     public private (set) var joins = [(join: Join, on: QueryFilterProtocol?, using: [Column]?)]()
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 62 |
 63 |     /// An array of `AuxiliaryTable` which will be used in a query with a WITH clause.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:64:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 62 |
 63 |     /// An array of `AuxiliaryTable` which will be used in a query with a WITH clause.
 64 |     public private (set) var with: [AuxiliaryTable]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 65 |
 66 |     private var syntaxError = ""
/host/spi-builder-workspace/Sources/SwiftKuery/ScalarColumnExpression.swift:26:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 24 |
 25 |     /// The scalar function to apply.
 26 |     public private (set) var function: ScalarFunction
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |
 28 |     init(_ function: ScalarFunction) {
/host/spi-builder-workspace/Sources/SwiftKuery/Parameter.swift:22:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
20 | public struct Parameter: Buildable {
21 |     /// An optional name of the parameter.
22 |     public private (set) var name: String?
   |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
23 |
24 |     /// Initialize an instance of Parameter.
/host/spi-builder-workspace/Sources/SwiftKuery/AggregateColumnExpression.swift:26:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 24 |
 25 |     /// The aggregate function to apply.
 26 |     public private (set) var function: AggregateFunction
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |
 28 |     init(_ function: AggregateFunction) {
[51/63] Compiling SwiftKuery AggregateColumnExpression.swift
/host/spi-builder-workspace/Sources/SwiftKuery/AggregateColumnExpression.swift:26:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 24 |
 25 |     /// The aggregate function to apply.
 26 |     public private (set) var function: AggregateFunction
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |
 28 |     init(_ function: AggregateFunction) {
/host/spi-builder-workspace/Sources/SwiftKuery/Table.swift:41:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 39 |     // MARK: Parameters
 40 |     /// The columns inside the table.
 41 |     public private (set) var columns: [Column]
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 42 |     private var columnsWithPrimaryKeyProperty = 0
 43 |
/host/spi-builder-workspace/Sources/SwiftKuery/Table.swift:45:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 43 |
 44 |     /// The alias of the table.
 45 |     public private (set) var alias: String?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 46 |
 47 |     private var primaryKey: [Column]?
/host/spi-builder-workspace/Sources/SwiftKuery/ScalarColumnExpression.swift:26:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 24 |
 25 |     /// The scalar function to apply.
 26 |     public private (set) var function: ScalarFunction
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |
 28 |     init(_ function: ScalarFunction) {
/host/spi-builder-workspace/Sources/SwiftKuery/Parameter.swift:22:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
20 | public struct Parameter: Buildable {
21 |     /// An optional name of the parameter.
22 |     public private (set) var name: String?
   |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
23 |
24 |     /// Initialize an instance of Parameter.
[52/63] Compiling SwiftKuery AuxiliaryTable.swift
/host/spi-builder-workspace/Sources/SwiftKuery/AggregateColumnExpression.swift:26:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 24 |
 25 |     /// The aggregate function to apply.
 26 |     public private (set) var function: AggregateFunction
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |
 28 |     init(_ function: AggregateFunction) {
/host/spi-builder-workspace/Sources/SwiftKuery/Table.swift:41:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 39 |     // MARK: Parameters
 40 |     /// The columns inside the table.
 41 |     public private (set) var columns: [Column]
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 42 |     private var columnsWithPrimaryKeyProperty = 0
 43 |
/host/spi-builder-workspace/Sources/SwiftKuery/Table.swift:45:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 43 |
 44 |     /// The alias of the table.
 45 |     public private (set) var alias: String?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 46 |
 47 |     private var primaryKey: [Column]?
/host/spi-builder-workspace/Sources/SwiftKuery/ScalarColumnExpression.swift:26:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 24 |
 25 |     /// The scalar function to apply.
 26 |     public private (set) var function: ScalarFunction
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |
 28 |     init(_ function: ScalarFunction) {
/host/spi-builder-workspace/Sources/SwiftKuery/Parameter.swift:22:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
20 | public struct Parameter: Buildable {
21 |     /// An optional name of the parameter.
22 |     public private (set) var name: String?
   |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
23 |
24 |     /// Initialize an instance of Parameter.
[53/63] Compiling SwiftKuery Buildable.swift
/host/spi-builder-workspace/Sources/SwiftKuery/AggregateColumnExpression.swift:26:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 24 |
 25 |     /// The aggregate function to apply.
 26 |     public private (set) var function: AggregateFunction
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |
 28 |     init(_ function: AggregateFunction) {
/host/spi-builder-workspace/Sources/SwiftKuery/Table.swift:41:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 39 |     // MARK: Parameters
 40 |     /// The columns inside the table.
 41 |     public private (set) var columns: [Column]
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 42 |     private var columnsWithPrimaryKeyProperty = 0
 43 |
/host/spi-builder-workspace/Sources/SwiftKuery/Table.swift:45:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 43 |
 44 |     /// The alias of the table.
 45 |     public private (set) var alias: String?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 46 |
 47 |     private var primaryKey: [Column]?
/host/spi-builder-workspace/Sources/SwiftKuery/ScalarColumnExpression.swift:26:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 24 |
 25 |     /// The scalar function to apply.
 26 |     public private (set) var function: ScalarFunction
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |
 28 |     init(_ function: ScalarFunction) {
/host/spi-builder-workspace/Sources/SwiftKuery/Parameter.swift:22:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
20 | public struct Parameter: Buildable {
21 |     /// An optional name of the parameter.
22 |     public private (set) var name: String?
   |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
23 |
24 |     /// Initialize an instance of Parameter.
[54/63] Compiling SwiftKuery Column.swift
/host/spi-builder-workspace/Sources/SwiftKuery/AggregateColumnExpression.swift:26:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 24 |
 25 |     /// The aggregate function to apply.
 26 |     public private (set) var function: AggregateFunction
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |
 28 |     init(_ function: AggregateFunction) {
/host/spi-builder-workspace/Sources/SwiftKuery/Table.swift:41:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 39 |     // MARK: Parameters
 40 |     /// The columns inside the table.
 41 |     public private (set) var columns: [Column]
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 42 |     private var columnsWithPrimaryKeyProperty = 0
 43 |
/host/spi-builder-workspace/Sources/SwiftKuery/Table.swift:45:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 43 |
 44 |     /// The alias of the table.
 45 |     public private (set) var alias: String?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 46 |
 47 |     private var primaryKey: [Column]?
/host/spi-builder-workspace/Sources/SwiftKuery/ScalarColumnExpression.swift:26:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 24 |
 25 |     /// The scalar function to apply.
 26 |     public private (set) var function: ScalarFunction
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |
 28 |     init(_ function: ScalarFunction) {
/host/spi-builder-workspace/Sources/SwiftKuery/Parameter.swift:22:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
20 | public struct Parameter: Buildable {
21 |     /// An optional name of the parameter.
22 |     public private (set) var name: String?
   |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
23 |
24 |     /// Initialize an instance of Parameter.
[55/63] Compiling SwiftKuery ColumnAndExpressions_Extensions.swift
/host/spi-builder-workspace/Sources/SwiftKuery/AggregateColumnExpression.swift:26:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 24 |
 25 |     /// The aggregate function to apply.
 26 |     public private (set) var function: AggregateFunction
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |
 28 |     init(_ function: AggregateFunction) {
/host/spi-builder-workspace/Sources/SwiftKuery/Table.swift:41:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 39 |     // MARK: Parameters
 40 |     /// The columns inside the table.
 41 |     public private (set) var columns: [Column]
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 42 |     private var columnsWithPrimaryKeyProperty = 0
 43 |
/host/spi-builder-workspace/Sources/SwiftKuery/Table.swift:45:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 43 |
 44 |     /// The alias of the table.
 45 |     public private (set) var alias: String?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 46 |
 47 |     private var primaryKey: [Column]?
/host/spi-builder-workspace/Sources/SwiftKuery/ScalarColumnExpression.swift:26:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 24 |
 25 |     /// The scalar function to apply.
 26 |     public private (set) var function: ScalarFunction
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |
 28 |     init(_ function: ScalarFunction) {
/host/spi-builder-workspace/Sources/SwiftKuery/Parameter.swift:22:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
20 | public struct Parameter: Buildable {
21 |     /// An optional name of the parameter.
22 |     public private (set) var name: String?
   |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
23 |
24 |     /// Initialize an instance of Parameter.
[56/63] Compiling SwiftKuery ColumnCreator.swift
/host/spi-builder-workspace/Sources/SwiftKuery/AggregateColumnExpression.swift:26:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 24 |
 25 |     /// The aggregate function to apply.
 26 |     public private (set) var function: AggregateFunction
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |
 28 |     init(_ function: AggregateFunction) {
/host/spi-builder-workspace/Sources/SwiftKuery/Table.swift:41:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 39 |     // MARK: Parameters
 40 |     /// The columns inside the table.
 41 |     public private (set) var columns: [Column]
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 42 |     private var columnsWithPrimaryKeyProperty = 0
 43 |
/host/spi-builder-workspace/Sources/SwiftKuery/Table.swift:45:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 43 |
 44 |     /// The alias of the table.
 45 |     public private (set) var alias: String?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 46 |
 47 |     private var primaryKey: [Column]?
/host/spi-builder-workspace/Sources/SwiftKuery/ScalarColumnExpression.swift:26:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 24 |
 25 |     /// The scalar function to apply.
 26 |     public private (set) var function: ScalarFunction
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |
 28 |     init(_ function: ScalarFunction) {
/host/spi-builder-workspace/Sources/SwiftKuery/Parameter.swift:22:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
20 | public struct Parameter: Buildable {
21 |     /// An optional name of the parameter.
22 |     public private (set) var name: String?
   |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
23 |
24 |     /// Initialize an instance of Parameter.
[57/63] Compiling SwiftKuery Condition.swift
/host/spi-builder-workspace/Sources/SwiftKuery/AggregateColumnExpression.swift:26:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 24 |
 25 |     /// The aggregate function to apply.
 26 |     public private (set) var function: AggregateFunction
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |
 28 |     init(_ function: AggregateFunction) {
/host/spi-builder-workspace/Sources/SwiftKuery/Table.swift:41:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 39 |     // MARK: Parameters
 40 |     /// The columns inside the table.
 41 |     public private (set) var columns: [Column]
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 42 |     private var columnsWithPrimaryKeyProperty = 0
 43 |
/host/spi-builder-workspace/Sources/SwiftKuery/Table.swift:45:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 43 |
 44 |     /// The alias of the table.
 45 |     public private (set) var alias: String?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 46 |
 47 |     private var primaryKey: [Column]?
/host/spi-builder-workspace/Sources/SwiftKuery/ScalarColumnExpression.swift:26:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 24 |
 25 |     /// The scalar function to apply.
 26 |     public private (set) var function: ScalarFunction
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |
 28 |     init(_ function: ScalarFunction) {
/host/spi-builder-workspace/Sources/SwiftKuery/Parameter.swift:22:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
20 | public struct Parameter: Buildable {
21 |     /// An optional name of the parameter.
22 |     public private (set) var name: String?
   |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
23 |
24 |     /// Initialize an instance of Parameter.
[58/63] Compiling SwiftKuery Subqueries_GlobalFunctionsAndExtensions.swift
/host/spi-builder-workspace/Sources/SwiftKuery/Table.swift:41:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 39 |     // MARK: Parameters
 40 |     /// The columns inside the table.
 41 |     public private (set) var columns: [Column]
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 42 |     private var columnsWithPrimaryKeyProperty = 0
 43 |
/host/spi-builder-workspace/Sources/SwiftKuery/Table.swift:45:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 43 |
 44 |     /// The alias of the table.
 45 |     public private (set) var alias: String?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 46 |
 47 |     private var primaryKey: [Column]?
/host/spi-builder-workspace/Sources/SwiftKuery/Update.swift:26:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 24 |     /// The SQL WHERE clause containing the filter for the rows to update.
 25 |     /// Could be represented with a `Filter` clause or a `String` containing raw SQL.
 26 |     public private (set) var whereClause: QueryFilterProtocol?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |
 28 |     /// A String with a clause to be appended to the end of the query.
/host/spi-builder-workspace/Sources/SwiftKuery/Update.swift:29:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |
 28 |     /// A String with a clause to be appended to the end of the query.
 29 |     public private (set) var suffix: QuerySuffixProtocol?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 30 |
 31 |     private let valueTuples: [(column: Column, value: Any)]
/host/spi-builder-workspace/Sources/SwiftKuery/Update.swift:34:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 32 |
 33 |     /// An array of `AuxiliaryTable` which will be used in a query with a WITH clause.
 34 |     public private (set) var with: [AuxiliaryTable]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 35 |
 36 |     private var syntaxError = ""
/host/spi-builder-workspace/Sources/SwiftKuery/ScalarColumnExpression.swift:26:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 24 |
 25 |     /// The scalar function to apply.
 26 |     public private (set) var function: ScalarFunction
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |
 28 |     init(_ function: ScalarFunction) {
/host/spi-builder-workspace/Sources/SwiftKuery/Parameter.swift:22:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
20 | public struct Parameter: Buildable {
21 |     /// An optional name of the parameter.
22 |     public private (set) var name: String?
   |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
23 |
24 |     /// Initialize an instance of Parameter.
/host/spi-builder-workspace/Sources/SwiftKuery/AggregateColumnExpression.swift:26:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 24 |
 25 |     /// The aggregate function to apply.
 26 |     public private (set) var function: AggregateFunction
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |
 28 |     init(_ function: AggregateFunction) {
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:29:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |     /// The SQL WHERE clause containing the filter for rows to retrieve.
 28 |     /// Could be represented with a `Filter` clause or a `String` containing raw SQL.
 29 |     public private (set) var whereClause: QueryFilterProtocol?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 30 |
 31 |     /// A boolean indicating whether the selected values have to be distinct.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:33:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 31 |     /// A boolean indicating whether the selected values have to be distinct.
 32 |     /// If true, corresponds to the SQL SELECT DISTINCT statement.
 33 |     public private (set) var distinct = false
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |     /// The number of rows to select.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:37:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 35 |     /// The number of rows to select.
 36 |     /// If specified, corresponds to the SQL SELECT TOP/LIMIT clause.
 37 |     public private (set) var rowsToReturn: Int?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 38 |
 39 |     /// The number of rows to skip.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:41:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 39 |     /// The number of rows to skip.
 40 |     /// If specified, corresponds to the SQL SELECT OFFSET clause.
 41 |     public private (set) var offset: Int?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 42 |
 43 |     /// An array containing `OrderBy` elements to sort the selected rows.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:45:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 43 |     /// An array containing `OrderBy` elements to sort the selected rows.
 44 |     /// The SQL ORDER BY keyword.
 45 |     public private (set) var orderBy: [OrderBy]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 46 |
 47 |     /// An array containing `Column` elements to group the selected rows.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:49:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 47 |     /// An array containing `Column` elements to group the selected rows.
 48 |     /// The SQL GROUP BY statement.
 49 |     public private (set) var groupBy: [Column]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 50 |
 51 |     /// The SQL HAVING clause containing the filter for the rows to select when aggregate functions are used.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:53:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 51 |     /// The SQL HAVING clause containing the filter for the rows to select when aggregate functions are used.
 52 |     /// Could be represented with a `Having` clause or a `String` containing raw SQL.
 53 |     public private (set) var havingClause: QueryHavingProtocol?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     /// The SQL UNION clauses.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:56:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     /// The SQL UNION clauses.
 56 |     public private (set) var unions: [Union]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 57 |
 58 |     /// The SQL JOIN, ON and USING clauses.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:61:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 59 |     /// ON clause can be represented as `Filter` or a `String` containing raw SQL.
 60 |     /// USING clause: an array of `Column` elements that have to match in a JOIN query.
 61 |     public private (set) var joins = [(join: Join, on: QueryFilterProtocol?, using: [Column]?)]()
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 62 |
 63 |     /// An array of `AuxiliaryTable` which will be used in a query with a WITH clause.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:64:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 62 |
 63 |     /// An array of `AuxiliaryTable` which will be used in a query with a WITH clause.
 64 |     public private (set) var with: [AuxiliaryTable]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 65 |
 66 |     private var syntaxError = ""
/host/spi-builder-workspace/Sources/SwiftKuery/Parameter.swift:31:16: warning: static property 'numberedParameterMarker' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |     }
30 |
31 |     static var numberedParameterMarker = "\u{00}\u{01}\u{01}\u{00}"
   |                |- warning: static property 'numberedParameterMarker' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'numberedParameterMarker' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'numberedParameterMarker' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |     static var namedParameterStart = "\u{01}\u{02}\u{02}\u{01}"
33 |     static var namedParameterEnd = "\u{02}\u{03}\u{03}\u{02}"
/host/spi-builder-workspace/Sources/SwiftKuery/Parameter.swift:32:16: warning: static property 'namedParameterStart' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
30 |
31 |     static var numberedParameterMarker = "\u{00}\u{01}\u{01}\u{00}"
32 |     static var namedParameterStart = "\u{01}\u{02}\u{02}\u{01}"
   |                |- warning: static property 'namedParameterStart' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'namedParameterStart' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'namedParameterStart' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |     static var namedParameterEnd = "\u{02}\u{03}\u{03}\u{02}"
34 |
/host/spi-builder-workspace/Sources/SwiftKuery/Parameter.swift:33:16: warning: static property 'namedParameterEnd' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
31 |     static var numberedParameterMarker = "\u{00}\u{01}\u{01}\u{00}"
32 |     static var namedParameterStart = "\u{01}\u{02}\u{02}\u{01}"
33 |     static var namedParameterEnd = "\u{02}\u{03}\u{03}\u{02}"
   |                |- warning: static property 'namedParameterEnd' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'namedParameterEnd' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'namedParameterEnd' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |
35 |     /// Build the parameter using `QueryBuilder`. If the parameter's name is set,
/host/spi-builder-workspace/Sources/SwiftKuery/Insert.swift:28:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 26 |
 27 |     /// An array of rows (values to insert in each row).
 28 |     public private (set) var values: [[Any]]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 29 |
 30 |     /// A String with a clause to be appended to the end of the query.
/host/spi-builder-workspace/Sources/SwiftKuery/Insert.swift:31:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 29 |
 30 |     /// A String with a clause to be appended to the end of the query.
 31 |     public private (set) var suffix: QuerySuffixProtocol?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 32 |
 33 |     /// The select query that retrieves the rows to insert (for INSERT INTO SELECT).
/host/spi-builder-workspace/Sources/SwiftKuery/Insert.swift:34:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 32 |
 33 |     /// The select query that retrieves the rows to insert (for INSERT INTO SELECT).
 34 |     public private (set) var query: Select?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 35 |
 36 |     /// An array of `AuxiliaryTable` which will be used in a query with a WITH clause.
/host/spi-builder-workspace/Sources/SwiftKuery/Insert.swift:37:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 35 |
 36 |     /// An array of `AuxiliaryTable` which will be used in a query with a WITH clause.
 37 |     public private (set) var with: [AuxiliaryTable]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 38 |
 39 |     /// A flag for return ID
/host/spi-builder-workspace/Sources/SwiftKuery/Delete.swift:26:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 24 |     /// The SQL WHERE clause containing the filter for rows to delete.
 25 |     /// Could be represented with a `Filter` clause or a `String` containing raw SQL.
 26 |     public private (set) var whereClause: QueryFilterProtocol?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |
 28 |     /// A String with a clause to be appended to the end of the query.
/host/spi-builder-workspace/Sources/SwiftKuery/Delete.swift:29:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |
 28 |     /// A String with a clause to be appended to the end of the query.
 29 |     public private (set) var suffix: QuerySuffixProtocol?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 30 |
 31 |     /// An array of `AuxiliaryTable` which will be used in a query with a WITH clause.
/host/spi-builder-workspace/Sources/SwiftKuery/Delete.swift:32:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 30 |
 31 |     /// An array of `AuxiliaryTable` which will be used in a query with a WITH clause.
 32 |     public private (set) var with: [AuxiliaryTable]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |
 34 |     private var syntaxError = ""
[59/63] Compiling SwiftKuery Table.swift
/host/spi-builder-workspace/Sources/SwiftKuery/Table.swift:41:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 39 |     // MARK: Parameters
 40 |     /// The columns inside the table.
 41 |     public private (set) var columns: [Column]
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 42 |     private var columnsWithPrimaryKeyProperty = 0
 43 |
/host/spi-builder-workspace/Sources/SwiftKuery/Table.swift:45:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 43 |
 44 |     /// The alias of the table.
 45 |     public private (set) var alias: String?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 46 |
 47 |     private var primaryKey: [Column]?
/host/spi-builder-workspace/Sources/SwiftKuery/Update.swift:26:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 24 |     /// The SQL WHERE clause containing the filter for the rows to update.
 25 |     /// Could be represented with a `Filter` clause or a `String` containing raw SQL.
 26 |     public private (set) var whereClause: QueryFilterProtocol?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |
 28 |     /// A String with a clause to be appended to the end of the query.
/host/spi-builder-workspace/Sources/SwiftKuery/Update.swift:29:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |
 28 |     /// A String with a clause to be appended to the end of the query.
 29 |     public private (set) var suffix: QuerySuffixProtocol?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 30 |
 31 |     private let valueTuples: [(column: Column, value: Any)]
/host/spi-builder-workspace/Sources/SwiftKuery/Update.swift:34:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 32 |
 33 |     /// An array of `AuxiliaryTable` which will be used in a query with a WITH clause.
 34 |     public private (set) var with: [AuxiliaryTable]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 35 |
 36 |     private var syntaxError = ""
/host/spi-builder-workspace/Sources/SwiftKuery/ScalarColumnExpression.swift:26:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 24 |
 25 |     /// The scalar function to apply.
 26 |     public private (set) var function: ScalarFunction
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |
 28 |     init(_ function: ScalarFunction) {
/host/spi-builder-workspace/Sources/SwiftKuery/Parameter.swift:22:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
20 | public struct Parameter: Buildable {
21 |     /// An optional name of the parameter.
22 |     public private (set) var name: String?
   |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
23 |
24 |     /// Initialize an instance of Parameter.
/host/spi-builder-workspace/Sources/SwiftKuery/AggregateColumnExpression.swift:26:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 24 |
 25 |     /// The aggregate function to apply.
 26 |     public private (set) var function: AggregateFunction
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |
 28 |     init(_ function: AggregateFunction) {
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:29:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |     /// The SQL WHERE clause containing the filter for rows to retrieve.
 28 |     /// Could be represented with a `Filter` clause or a `String` containing raw SQL.
 29 |     public private (set) var whereClause: QueryFilterProtocol?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 30 |
 31 |     /// A boolean indicating whether the selected values have to be distinct.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:33:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 31 |     /// A boolean indicating whether the selected values have to be distinct.
 32 |     /// If true, corresponds to the SQL SELECT DISTINCT statement.
 33 |     public private (set) var distinct = false
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |     /// The number of rows to select.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:37:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 35 |     /// The number of rows to select.
 36 |     /// If specified, corresponds to the SQL SELECT TOP/LIMIT clause.
 37 |     public private (set) var rowsToReturn: Int?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 38 |
 39 |     /// The number of rows to skip.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:41:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 39 |     /// The number of rows to skip.
 40 |     /// If specified, corresponds to the SQL SELECT OFFSET clause.
 41 |     public private (set) var offset: Int?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 42 |
 43 |     /// An array containing `OrderBy` elements to sort the selected rows.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:45:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 43 |     /// An array containing `OrderBy` elements to sort the selected rows.
 44 |     /// The SQL ORDER BY keyword.
 45 |     public private (set) var orderBy: [OrderBy]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 46 |
 47 |     /// An array containing `Column` elements to group the selected rows.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:49:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 47 |     /// An array containing `Column` elements to group the selected rows.
 48 |     /// The SQL GROUP BY statement.
 49 |     public private (set) var groupBy: [Column]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 50 |
 51 |     /// The SQL HAVING clause containing the filter for the rows to select when aggregate functions are used.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:53:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 51 |     /// The SQL HAVING clause containing the filter for the rows to select when aggregate functions are used.
 52 |     /// Could be represented with a `Having` clause or a `String` containing raw SQL.
 53 |     public private (set) var havingClause: QueryHavingProtocol?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     /// The SQL UNION clauses.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:56:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     /// The SQL UNION clauses.
 56 |     public private (set) var unions: [Union]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 57 |
 58 |     /// The SQL JOIN, ON and USING clauses.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:61:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 59 |     /// ON clause can be represented as `Filter` or a `String` containing raw SQL.
 60 |     /// USING clause: an array of `Column` elements that have to match in a JOIN query.
 61 |     public private (set) var joins = [(join: Join, on: QueryFilterProtocol?, using: [Column]?)]()
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 62 |
 63 |     /// An array of `AuxiliaryTable` which will be used in a query with a WITH clause.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:64:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 62 |
 63 |     /// An array of `AuxiliaryTable` which will be used in a query with a WITH clause.
 64 |     public private (set) var with: [AuxiliaryTable]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 65 |
 66 |     private var syntaxError = ""
/host/spi-builder-workspace/Sources/SwiftKuery/Parameter.swift:31:16: warning: static property 'numberedParameterMarker' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |     }
30 |
31 |     static var numberedParameterMarker = "\u{00}\u{01}\u{01}\u{00}"
   |                |- warning: static property 'numberedParameterMarker' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'numberedParameterMarker' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'numberedParameterMarker' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |     static var namedParameterStart = "\u{01}\u{02}\u{02}\u{01}"
33 |     static var namedParameterEnd = "\u{02}\u{03}\u{03}\u{02}"
/host/spi-builder-workspace/Sources/SwiftKuery/Parameter.swift:32:16: warning: static property 'namedParameterStart' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
30 |
31 |     static var numberedParameterMarker = "\u{00}\u{01}\u{01}\u{00}"
32 |     static var namedParameterStart = "\u{01}\u{02}\u{02}\u{01}"
   |                |- warning: static property 'namedParameterStart' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'namedParameterStart' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'namedParameterStart' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |     static var namedParameterEnd = "\u{02}\u{03}\u{03}\u{02}"
34 |
/host/spi-builder-workspace/Sources/SwiftKuery/Parameter.swift:33:16: warning: static property 'namedParameterEnd' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
31 |     static var numberedParameterMarker = "\u{00}\u{01}\u{01}\u{00}"
32 |     static var namedParameterStart = "\u{01}\u{02}\u{02}\u{01}"
33 |     static var namedParameterEnd = "\u{02}\u{03}\u{03}\u{02}"
   |                |- warning: static property 'namedParameterEnd' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'namedParameterEnd' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'namedParameterEnd' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |
35 |     /// Build the parameter using `QueryBuilder`. If the parameter's name is set,
/host/spi-builder-workspace/Sources/SwiftKuery/Insert.swift:28:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 26 |
 27 |     /// An array of rows (values to insert in each row).
 28 |     public private (set) var values: [[Any]]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 29 |
 30 |     /// A String with a clause to be appended to the end of the query.
/host/spi-builder-workspace/Sources/SwiftKuery/Insert.swift:31:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 29 |
 30 |     /// A String with a clause to be appended to the end of the query.
 31 |     public private (set) var suffix: QuerySuffixProtocol?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 32 |
 33 |     /// The select query that retrieves the rows to insert (for INSERT INTO SELECT).
/host/spi-builder-workspace/Sources/SwiftKuery/Insert.swift:34:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 32 |
 33 |     /// The select query that retrieves the rows to insert (for INSERT INTO SELECT).
 34 |     public private (set) var query: Select?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 35 |
 36 |     /// An array of `AuxiliaryTable` which will be used in a query with a WITH clause.
/host/spi-builder-workspace/Sources/SwiftKuery/Insert.swift:37:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 35 |
 36 |     /// An array of `AuxiliaryTable` which will be used in a query with a WITH clause.
 37 |     public private (set) var with: [AuxiliaryTable]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 38 |
 39 |     /// A flag for return ID
/host/spi-builder-workspace/Sources/SwiftKuery/Delete.swift:26:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 24 |     /// The SQL WHERE clause containing the filter for rows to delete.
 25 |     /// Could be represented with a `Filter` clause or a `String` containing raw SQL.
 26 |     public private (set) var whereClause: QueryFilterProtocol?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |
 28 |     /// A String with a clause to be appended to the end of the query.
/host/spi-builder-workspace/Sources/SwiftKuery/Delete.swift:29:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |
 28 |     /// A String with a clause to be appended to the end of the query.
 29 |     public private (set) var suffix: QuerySuffixProtocol?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 30 |
 31 |     /// An array of `AuxiliaryTable` which will be used in a query with a WITH clause.
/host/spi-builder-workspace/Sources/SwiftKuery/Delete.swift:32:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 30 |
 31 |     /// An array of `AuxiliaryTable` which will be used in a query with a WITH clause.
 32 |     public private (set) var with: [AuxiliaryTable]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |
 34 |     private var syntaxError = ""
[60/63] Compiling SwiftKuery Union.swift
/host/spi-builder-workspace/Sources/SwiftKuery/Table.swift:41:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 39 |     // MARK: Parameters
 40 |     /// The columns inside the table.
 41 |     public private (set) var columns: [Column]
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 42 |     private var columnsWithPrimaryKeyProperty = 0
 43 |
/host/spi-builder-workspace/Sources/SwiftKuery/Table.swift:45:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 43 |
 44 |     /// The alias of the table.
 45 |     public private (set) var alias: String?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 46 |
 47 |     private var primaryKey: [Column]?
/host/spi-builder-workspace/Sources/SwiftKuery/Update.swift:26:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 24 |     /// The SQL WHERE clause containing the filter for the rows to update.
 25 |     /// Could be represented with a `Filter` clause or a `String` containing raw SQL.
 26 |     public private (set) var whereClause: QueryFilterProtocol?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |
 28 |     /// A String with a clause to be appended to the end of the query.
/host/spi-builder-workspace/Sources/SwiftKuery/Update.swift:29:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |
 28 |     /// A String with a clause to be appended to the end of the query.
 29 |     public private (set) var suffix: QuerySuffixProtocol?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 30 |
 31 |     private let valueTuples: [(column: Column, value: Any)]
/host/spi-builder-workspace/Sources/SwiftKuery/Update.swift:34:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 32 |
 33 |     /// An array of `AuxiliaryTable` which will be used in a query with a WITH clause.
 34 |     public private (set) var with: [AuxiliaryTable]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 35 |
 36 |     private var syntaxError = ""
/host/spi-builder-workspace/Sources/SwiftKuery/ScalarColumnExpression.swift:26:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 24 |
 25 |     /// The scalar function to apply.
 26 |     public private (set) var function: ScalarFunction
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |
 28 |     init(_ function: ScalarFunction) {
/host/spi-builder-workspace/Sources/SwiftKuery/Parameter.swift:22:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
20 | public struct Parameter: Buildable {
21 |     /// An optional name of the parameter.
22 |     public private (set) var name: String?
   |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
23 |
24 |     /// Initialize an instance of Parameter.
/host/spi-builder-workspace/Sources/SwiftKuery/AggregateColumnExpression.swift:26:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 24 |
 25 |     /// The aggregate function to apply.
 26 |     public private (set) var function: AggregateFunction
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |
 28 |     init(_ function: AggregateFunction) {
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:29:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |     /// The SQL WHERE clause containing the filter for rows to retrieve.
 28 |     /// Could be represented with a `Filter` clause or a `String` containing raw SQL.
 29 |     public private (set) var whereClause: QueryFilterProtocol?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 30 |
 31 |     /// A boolean indicating whether the selected values have to be distinct.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:33:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 31 |     /// A boolean indicating whether the selected values have to be distinct.
 32 |     /// If true, corresponds to the SQL SELECT DISTINCT statement.
 33 |     public private (set) var distinct = false
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |     /// The number of rows to select.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:37:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 35 |     /// The number of rows to select.
 36 |     /// If specified, corresponds to the SQL SELECT TOP/LIMIT clause.
 37 |     public private (set) var rowsToReturn: Int?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 38 |
 39 |     /// The number of rows to skip.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:41:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 39 |     /// The number of rows to skip.
 40 |     /// If specified, corresponds to the SQL SELECT OFFSET clause.
 41 |     public private (set) var offset: Int?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 42 |
 43 |     /// An array containing `OrderBy` elements to sort the selected rows.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:45:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 43 |     /// An array containing `OrderBy` elements to sort the selected rows.
 44 |     /// The SQL ORDER BY keyword.
 45 |     public private (set) var orderBy: [OrderBy]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 46 |
 47 |     /// An array containing `Column` elements to group the selected rows.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:49:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 47 |     /// An array containing `Column` elements to group the selected rows.
 48 |     /// The SQL GROUP BY statement.
 49 |     public private (set) var groupBy: [Column]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 50 |
 51 |     /// The SQL HAVING clause containing the filter for the rows to select when aggregate functions are used.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:53:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 51 |     /// The SQL HAVING clause containing the filter for the rows to select when aggregate functions are used.
 52 |     /// Could be represented with a `Having` clause or a `String` containing raw SQL.
 53 |     public private (set) var havingClause: QueryHavingProtocol?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     /// The SQL UNION clauses.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:56:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     /// The SQL UNION clauses.
 56 |     public private (set) var unions: [Union]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 57 |
 58 |     /// The SQL JOIN, ON and USING clauses.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:61:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 59 |     /// ON clause can be represented as `Filter` or a `String` containing raw SQL.
 60 |     /// USING clause: an array of `Column` elements that have to match in a JOIN query.
 61 |     public private (set) var joins = [(join: Join, on: QueryFilterProtocol?, using: [Column]?)]()
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 62 |
 63 |     /// An array of `AuxiliaryTable` which will be used in a query with a WITH clause.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:64:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 62 |
 63 |     /// An array of `AuxiliaryTable` which will be used in a query with a WITH clause.
 64 |     public private (set) var with: [AuxiliaryTable]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 65 |
 66 |     private var syntaxError = ""
/host/spi-builder-workspace/Sources/SwiftKuery/Parameter.swift:31:16: warning: static property 'numberedParameterMarker' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |     }
30 |
31 |     static var numberedParameterMarker = "\u{00}\u{01}\u{01}\u{00}"
   |                |- warning: static property 'numberedParameterMarker' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'numberedParameterMarker' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'numberedParameterMarker' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |     static var namedParameterStart = "\u{01}\u{02}\u{02}\u{01}"
33 |     static var namedParameterEnd = "\u{02}\u{03}\u{03}\u{02}"
/host/spi-builder-workspace/Sources/SwiftKuery/Parameter.swift:32:16: warning: static property 'namedParameterStart' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
30 |
31 |     static var numberedParameterMarker = "\u{00}\u{01}\u{01}\u{00}"
32 |     static var namedParameterStart = "\u{01}\u{02}\u{02}\u{01}"
   |                |- warning: static property 'namedParameterStart' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'namedParameterStart' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'namedParameterStart' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |     static var namedParameterEnd = "\u{02}\u{03}\u{03}\u{02}"
34 |
/host/spi-builder-workspace/Sources/SwiftKuery/Parameter.swift:33:16: warning: static property 'namedParameterEnd' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
31 |     static var numberedParameterMarker = "\u{00}\u{01}\u{01}\u{00}"
32 |     static var namedParameterStart = "\u{01}\u{02}\u{02}\u{01}"
33 |     static var namedParameterEnd = "\u{02}\u{03}\u{03}\u{02}"
   |                |- warning: static property 'namedParameterEnd' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'namedParameterEnd' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'namedParameterEnd' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |
35 |     /// Build the parameter using `QueryBuilder`. If the parameter's name is set,
/host/spi-builder-workspace/Sources/SwiftKuery/Insert.swift:28:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 26 |
 27 |     /// An array of rows (values to insert in each row).
 28 |     public private (set) var values: [[Any]]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 29 |
 30 |     /// A String with a clause to be appended to the end of the query.
/host/spi-builder-workspace/Sources/SwiftKuery/Insert.swift:31:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 29 |
 30 |     /// A String with a clause to be appended to the end of the query.
 31 |     public private (set) var suffix: QuerySuffixProtocol?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 32 |
 33 |     /// The select query that retrieves the rows to insert (for INSERT INTO SELECT).
/host/spi-builder-workspace/Sources/SwiftKuery/Insert.swift:34:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 32 |
 33 |     /// The select query that retrieves the rows to insert (for INSERT INTO SELECT).
 34 |     public private (set) var query: Select?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 35 |
 36 |     /// An array of `AuxiliaryTable` which will be used in a query with a WITH clause.
/host/spi-builder-workspace/Sources/SwiftKuery/Insert.swift:37:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 35 |
 36 |     /// An array of `AuxiliaryTable` which will be used in a query with a WITH clause.
 37 |     public private (set) var with: [AuxiliaryTable]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 38 |
 39 |     /// A flag for return ID
/host/spi-builder-workspace/Sources/SwiftKuery/Delete.swift:26:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 24 |     /// The SQL WHERE clause containing the filter for rows to delete.
 25 |     /// Could be represented with a `Filter` clause or a `String` containing raw SQL.
 26 |     public private (set) var whereClause: QueryFilterProtocol?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |
 28 |     /// A String with a clause to be appended to the end of the query.
/host/spi-builder-workspace/Sources/SwiftKuery/Delete.swift:29:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |
 28 |     /// A String with a clause to be appended to the end of the query.
 29 |     public private (set) var suffix: QuerySuffixProtocol?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 30 |
 31 |     /// An array of `AuxiliaryTable` which will be used in a query with a WITH clause.
/host/spi-builder-workspace/Sources/SwiftKuery/Delete.swift:32:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 30 |
 31 |     /// An array of `AuxiliaryTable` which will be used in a query with a WITH clause.
 32 |     public private (set) var with: [AuxiliaryTable]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |
 34 |     private var syntaxError = ""
[61/63] Compiling SwiftKuery Update.swift
/host/spi-builder-workspace/Sources/SwiftKuery/Table.swift:41:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 39 |     // MARK: Parameters
 40 |     /// The columns inside the table.
 41 |     public private (set) var columns: [Column]
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 42 |     private var columnsWithPrimaryKeyProperty = 0
 43 |
/host/spi-builder-workspace/Sources/SwiftKuery/Table.swift:45:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 43 |
 44 |     /// The alias of the table.
 45 |     public private (set) var alias: String?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 46 |
 47 |     private var primaryKey: [Column]?
/host/spi-builder-workspace/Sources/SwiftKuery/Update.swift:26:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 24 |     /// The SQL WHERE clause containing the filter for the rows to update.
 25 |     /// Could be represented with a `Filter` clause or a `String` containing raw SQL.
 26 |     public private (set) var whereClause: QueryFilterProtocol?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |
 28 |     /// A String with a clause to be appended to the end of the query.
/host/spi-builder-workspace/Sources/SwiftKuery/Update.swift:29:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |
 28 |     /// A String with a clause to be appended to the end of the query.
 29 |     public private (set) var suffix: QuerySuffixProtocol?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 30 |
 31 |     private let valueTuples: [(column: Column, value: Any)]
/host/spi-builder-workspace/Sources/SwiftKuery/Update.swift:34:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 32 |
 33 |     /// An array of `AuxiliaryTable` which will be used in a query with a WITH clause.
 34 |     public private (set) var with: [AuxiliaryTable]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 35 |
 36 |     private var syntaxError = ""
/host/spi-builder-workspace/Sources/SwiftKuery/ScalarColumnExpression.swift:26:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 24 |
 25 |     /// The scalar function to apply.
 26 |     public private (set) var function: ScalarFunction
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |
 28 |     init(_ function: ScalarFunction) {
/host/spi-builder-workspace/Sources/SwiftKuery/Parameter.swift:22:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
20 | public struct Parameter: Buildable {
21 |     /// An optional name of the parameter.
22 |     public private (set) var name: String?
   |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
23 |
24 |     /// Initialize an instance of Parameter.
/host/spi-builder-workspace/Sources/SwiftKuery/AggregateColumnExpression.swift:26:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 24 |
 25 |     /// The aggregate function to apply.
 26 |     public private (set) var function: AggregateFunction
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |
 28 |     init(_ function: AggregateFunction) {
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:29:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |     /// The SQL WHERE clause containing the filter for rows to retrieve.
 28 |     /// Could be represented with a `Filter` clause or a `String` containing raw SQL.
 29 |     public private (set) var whereClause: QueryFilterProtocol?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 30 |
 31 |     /// A boolean indicating whether the selected values have to be distinct.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:33:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 31 |     /// A boolean indicating whether the selected values have to be distinct.
 32 |     /// If true, corresponds to the SQL SELECT DISTINCT statement.
 33 |     public private (set) var distinct = false
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |     /// The number of rows to select.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:37:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 35 |     /// The number of rows to select.
 36 |     /// If specified, corresponds to the SQL SELECT TOP/LIMIT clause.
 37 |     public private (set) var rowsToReturn: Int?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 38 |
 39 |     /// The number of rows to skip.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:41:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 39 |     /// The number of rows to skip.
 40 |     /// If specified, corresponds to the SQL SELECT OFFSET clause.
 41 |     public private (set) var offset: Int?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 42 |
 43 |     /// An array containing `OrderBy` elements to sort the selected rows.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:45:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 43 |     /// An array containing `OrderBy` elements to sort the selected rows.
 44 |     /// The SQL ORDER BY keyword.
 45 |     public private (set) var orderBy: [OrderBy]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 46 |
 47 |     /// An array containing `Column` elements to group the selected rows.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:49:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 47 |     /// An array containing `Column` elements to group the selected rows.
 48 |     /// The SQL GROUP BY statement.
 49 |     public private (set) var groupBy: [Column]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 50 |
 51 |     /// The SQL HAVING clause containing the filter for the rows to select when aggregate functions are used.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:53:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 51 |     /// The SQL HAVING clause containing the filter for the rows to select when aggregate functions are used.
 52 |     /// Could be represented with a `Having` clause or a `String` containing raw SQL.
 53 |     public private (set) var havingClause: QueryHavingProtocol?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     /// The SQL UNION clauses.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:56:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     /// The SQL UNION clauses.
 56 |     public private (set) var unions: [Union]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 57 |
 58 |     /// The SQL JOIN, ON and USING clauses.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:61:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 59 |     /// ON clause can be represented as `Filter` or a `String` containing raw SQL.
 60 |     /// USING clause: an array of `Column` elements that have to match in a JOIN query.
 61 |     public private (set) var joins = [(join: Join, on: QueryFilterProtocol?, using: [Column]?)]()
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 62 |
 63 |     /// An array of `AuxiliaryTable` which will be used in a query with a WITH clause.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:64:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 62 |
 63 |     /// An array of `AuxiliaryTable` which will be used in a query with a WITH clause.
 64 |     public private (set) var with: [AuxiliaryTable]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 65 |
 66 |     private var syntaxError = ""
/host/spi-builder-workspace/Sources/SwiftKuery/Parameter.swift:31:16: warning: static property 'numberedParameterMarker' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |     }
30 |
31 |     static var numberedParameterMarker = "\u{00}\u{01}\u{01}\u{00}"
   |                |- warning: static property 'numberedParameterMarker' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'numberedParameterMarker' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'numberedParameterMarker' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |     static var namedParameterStart = "\u{01}\u{02}\u{02}\u{01}"
33 |     static var namedParameterEnd = "\u{02}\u{03}\u{03}\u{02}"
/host/spi-builder-workspace/Sources/SwiftKuery/Parameter.swift:32:16: warning: static property 'namedParameterStart' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
30 |
31 |     static var numberedParameterMarker = "\u{00}\u{01}\u{01}\u{00}"
32 |     static var namedParameterStart = "\u{01}\u{02}\u{02}\u{01}"
   |                |- warning: static property 'namedParameterStart' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'namedParameterStart' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'namedParameterStart' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |     static var namedParameterEnd = "\u{02}\u{03}\u{03}\u{02}"
34 |
/host/spi-builder-workspace/Sources/SwiftKuery/Parameter.swift:33:16: warning: static property 'namedParameterEnd' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
31 |     static var numberedParameterMarker = "\u{00}\u{01}\u{01}\u{00}"
32 |     static var namedParameterStart = "\u{01}\u{02}\u{02}\u{01}"
33 |     static var namedParameterEnd = "\u{02}\u{03}\u{03}\u{02}"
   |                |- warning: static property 'namedParameterEnd' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'namedParameterEnd' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'namedParameterEnd' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |
35 |     /// Build the parameter using `QueryBuilder`. If the parameter's name is set,
/host/spi-builder-workspace/Sources/SwiftKuery/Insert.swift:28:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 26 |
 27 |     /// An array of rows (values to insert in each row).
 28 |     public private (set) var values: [[Any]]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 29 |
 30 |     /// A String with a clause to be appended to the end of the query.
/host/spi-builder-workspace/Sources/SwiftKuery/Insert.swift:31:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 29 |
 30 |     /// A String with a clause to be appended to the end of the query.
 31 |     public private (set) var suffix: QuerySuffixProtocol?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 32 |
 33 |     /// The select query that retrieves the rows to insert (for INSERT INTO SELECT).
/host/spi-builder-workspace/Sources/SwiftKuery/Insert.swift:34:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 32 |
 33 |     /// The select query that retrieves the rows to insert (for INSERT INTO SELECT).
 34 |     public private (set) var query: Select?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 35 |
 36 |     /// An array of `AuxiliaryTable` which will be used in a query with a WITH clause.
/host/spi-builder-workspace/Sources/SwiftKuery/Insert.swift:37:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 35 |
 36 |     /// An array of `AuxiliaryTable` which will be used in a query with a WITH clause.
 37 |     public private (set) var with: [AuxiliaryTable]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 38 |
 39 |     /// A flag for return ID
/host/spi-builder-workspace/Sources/SwiftKuery/Delete.swift:26:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 24 |     /// The SQL WHERE clause containing the filter for rows to delete.
 25 |     /// Could be represented with a `Filter` clause or a `String` containing raw SQL.
 26 |     public private (set) var whereClause: QueryFilterProtocol?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |
 28 |     /// A String with a clause to be appended to the end of the query.
/host/spi-builder-workspace/Sources/SwiftKuery/Delete.swift:29:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |
 28 |     /// A String with a clause to be appended to the end of the query.
 29 |     public private (set) var suffix: QuerySuffixProtocol?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 30 |
 31 |     /// An array of `AuxiliaryTable` which will be used in a query with a WITH clause.
/host/spi-builder-workspace/Sources/SwiftKuery/Delete.swift:32:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 30 |
 31 |     /// An array of `AuxiliaryTable` which will be used in a query with a WITH clause.
 32 |     public private (set) var with: [AuxiliaryTable]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |
 34 |     private var syntaxError = ""
[62/63] Compiling SwiftKuery Utils.swift
/host/spi-builder-workspace/Sources/SwiftKuery/Table.swift:41:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 39 |     // MARK: Parameters
 40 |     /// The columns inside the table.
 41 |     public private (set) var columns: [Column]
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 42 |     private var columnsWithPrimaryKeyProperty = 0
 43 |
/host/spi-builder-workspace/Sources/SwiftKuery/Table.swift:45:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 43 |
 44 |     /// The alias of the table.
 45 |     public private (set) var alias: String?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 46 |
 47 |     private var primaryKey: [Column]?
/host/spi-builder-workspace/Sources/SwiftKuery/Update.swift:26:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 24 |     /// The SQL WHERE clause containing the filter for the rows to update.
 25 |     /// Could be represented with a `Filter` clause or a `String` containing raw SQL.
 26 |     public private (set) var whereClause: QueryFilterProtocol?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |
 28 |     /// A String with a clause to be appended to the end of the query.
/host/spi-builder-workspace/Sources/SwiftKuery/Update.swift:29:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |
 28 |     /// A String with a clause to be appended to the end of the query.
 29 |     public private (set) var suffix: QuerySuffixProtocol?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 30 |
 31 |     private let valueTuples: [(column: Column, value: Any)]
/host/spi-builder-workspace/Sources/SwiftKuery/Update.swift:34:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 32 |
 33 |     /// An array of `AuxiliaryTable` which will be used in a query with a WITH clause.
 34 |     public private (set) var with: [AuxiliaryTable]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 35 |
 36 |     private var syntaxError = ""
/host/spi-builder-workspace/Sources/SwiftKuery/ScalarColumnExpression.swift:26:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 24 |
 25 |     /// The scalar function to apply.
 26 |     public private (set) var function: ScalarFunction
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |
 28 |     init(_ function: ScalarFunction) {
/host/spi-builder-workspace/Sources/SwiftKuery/Parameter.swift:22:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
20 | public struct Parameter: Buildable {
21 |     /// An optional name of the parameter.
22 |     public private (set) var name: String?
   |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
23 |
24 |     /// Initialize an instance of Parameter.
/host/spi-builder-workspace/Sources/SwiftKuery/AggregateColumnExpression.swift:26:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 24 |
 25 |     /// The aggregate function to apply.
 26 |     public private (set) var function: AggregateFunction
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |
 28 |     init(_ function: AggregateFunction) {
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:29:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |     /// The SQL WHERE clause containing the filter for rows to retrieve.
 28 |     /// Could be represented with a `Filter` clause or a `String` containing raw SQL.
 29 |     public private (set) var whereClause: QueryFilterProtocol?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 30 |
 31 |     /// A boolean indicating whether the selected values have to be distinct.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:33:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 31 |     /// A boolean indicating whether the selected values have to be distinct.
 32 |     /// If true, corresponds to the SQL SELECT DISTINCT statement.
 33 |     public private (set) var distinct = false
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |     /// The number of rows to select.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:37:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 35 |     /// The number of rows to select.
 36 |     /// If specified, corresponds to the SQL SELECT TOP/LIMIT clause.
 37 |     public private (set) var rowsToReturn: Int?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 38 |
 39 |     /// The number of rows to skip.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:41:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 39 |     /// The number of rows to skip.
 40 |     /// If specified, corresponds to the SQL SELECT OFFSET clause.
 41 |     public private (set) var offset: Int?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 42 |
 43 |     /// An array containing `OrderBy` elements to sort the selected rows.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:45:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 43 |     /// An array containing `OrderBy` elements to sort the selected rows.
 44 |     /// The SQL ORDER BY keyword.
 45 |     public private (set) var orderBy: [OrderBy]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 46 |
 47 |     /// An array containing `Column` elements to group the selected rows.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:49:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 47 |     /// An array containing `Column` elements to group the selected rows.
 48 |     /// The SQL GROUP BY statement.
 49 |     public private (set) var groupBy: [Column]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 50 |
 51 |     /// The SQL HAVING clause containing the filter for the rows to select when aggregate functions are used.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:53:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 51 |     /// The SQL HAVING clause containing the filter for the rows to select when aggregate functions are used.
 52 |     /// Could be represented with a `Having` clause or a `String` containing raw SQL.
 53 |     public private (set) var havingClause: QueryHavingProtocol?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     /// The SQL UNION clauses.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:56:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     /// The SQL UNION clauses.
 56 |     public private (set) var unions: [Union]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 57 |
 58 |     /// The SQL JOIN, ON and USING clauses.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:61:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 59 |     /// ON clause can be represented as `Filter` or a `String` containing raw SQL.
 60 |     /// USING clause: an array of `Column` elements that have to match in a JOIN query.
 61 |     public private (set) var joins = [(join: Join, on: QueryFilterProtocol?, using: [Column]?)]()
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 62 |
 63 |     /// An array of `AuxiliaryTable` which will be used in a query with a WITH clause.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:64:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 62 |
 63 |     /// An array of `AuxiliaryTable` which will be used in a query with a WITH clause.
 64 |     public private (set) var with: [AuxiliaryTable]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 65 |
 66 |     private var syntaxError = ""
/host/spi-builder-workspace/Sources/SwiftKuery/Parameter.swift:31:16: warning: static property 'numberedParameterMarker' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |     }
30 |
31 |     static var numberedParameterMarker = "\u{00}\u{01}\u{01}\u{00}"
   |                |- warning: static property 'numberedParameterMarker' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'numberedParameterMarker' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'numberedParameterMarker' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |     static var namedParameterStart = "\u{01}\u{02}\u{02}\u{01}"
33 |     static var namedParameterEnd = "\u{02}\u{03}\u{03}\u{02}"
/host/spi-builder-workspace/Sources/SwiftKuery/Parameter.swift:32:16: warning: static property 'namedParameterStart' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
30 |
31 |     static var numberedParameterMarker = "\u{00}\u{01}\u{01}\u{00}"
32 |     static var namedParameterStart = "\u{01}\u{02}\u{02}\u{01}"
   |                |- warning: static property 'namedParameterStart' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'namedParameterStart' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'namedParameterStart' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |     static var namedParameterEnd = "\u{02}\u{03}\u{03}\u{02}"
34 |
/host/spi-builder-workspace/Sources/SwiftKuery/Parameter.swift:33:16: warning: static property 'namedParameterEnd' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
31 |     static var numberedParameterMarker = "\u{00}\u{01}\u{01}\u{00}"
32 |     static var namedParameterStart = "\u{01}\u{02}\u{02}\u{01}"
33 |     static var namedParameterEnd = "\u{02}\u{03}\u{03}\u{02}"
   |                |- warning: static property 'namedParameterEnd' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'namedParameterEnd' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'namedParameterEnd' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |
35 |     /// Build the parameter using `QueryBuilder`. If the parameter's name is set,
/host/spi-builder-workspace/Sources/SwiftKuery/Insert.swift:28:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 26 |
 27 |     /// An array of rows (values to insert in each row).
 28 |     public private (set) var values: [[Any]]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 29 |
 30 |     /// A String with a clause to be appended to the end of the query.
/host/spi-builder-workspace/Sources/SwiftKuery/Insert.swift:31:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 29 |
 30 |     /// A String with a clause to be appended to the end of the query.
 31 |     public private (set) var suffix: QuerySuffixProtocol?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 32 |
 33 |     /// The select query that retrieves the rows to insert (for INSERT INTO SELECT).
/host/spi-builder-workspace/Sources/SwiftKuery/Insert.swift:34:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 32 |
 33 |     /// The select query that retrieves the rows to insert (for INSERT INTO SELECT).
 34 |     public private (set) var query: Select?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 35 |
 36 |     /// An array of `AuxiliaryTable` which will be used in a query with a WITH clause.
/host/spi-builder-workspace/Sources/SwiftKuery/Insert.swift:37:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 35 |
 36 |     /// An array of `AuxiliaryTable` which will be used in a query with a WITH clause.
 37 |     public private (set) var with: [AuxiliaryTable]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 38 |
 39 |     /// A flag for return ID
/host/spi-builder-workspace/Sources/SwiftKuery/Delete.swift:26:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 24 |     /// The SQL WHERE clause containing the filter for rows to delete.
 25 |     /// Could be represented with a `Filter` clause or a `String` containing raw SQL.
 26 |     public private (set) var whereClause: QueryFilterProtocol?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |
 28 |     /// A String with a clause to be appended to the end of the query.
/host/spi-builder-workspace/Sources/SwiftKuery/Delete.swift:29:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |
 28 |     /// A String with a clause to be appended to the end of the query.
 29 |     public private (set) var suffix: QuerySuffixProtocol?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 30 |
 31 |     /// An array of `AuxiliaryTable` which will be used in a query with a WITH clause.
/host/spi-builder-workspace/Sources/SwiftKuery/Delete.swift:32:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 30 |
 31 |     /// An array of `AuxiliaryTable` which will be used in a query with a WITH clause.
 32 |     public private (set) var with: [AuxiliaryTable]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |
 34 |     private var syntaxError = ""
[63/63] Compiling SwiftKuery With.swift
/host/spi-builder-workspace/Sources/SwiftKuery/Table.swift:41:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 39 |     // MARK: Parameters
 40 |     /// The columns inside the table.
 41 |     public private (set) var columns: [Column]
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 42 |     private var columnsWithPrimaryKeyProperty = 0
 43 |
/host/spi-builder-workspace/Sources/SwiftKuery/Table.swift:45:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 43 |
 44 |     /// The alias of the table.
 45 |     public private (set) var alias: String?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 46 |
 47 |     private var primaryKey: [Column]?
/host/spi-builder-workspace/Sources/SwiftKuery/Update.swift:26:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 24 |     /// The SQL WHERE clause containing the filter for the rows to update.
 25 |     /// Could be represented with a `Filter` clause or a `String` containing raw SQL.
 26 |     public private (set) var whereClause: QueryFilterProtocol?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |
 28 |     /// A String with a clause to be appended to the end of the query.
/host/spi-builder-workspace/Sources/SwiftKuery/Update.swift:29:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |
 28 |     /// A String with a clause to be appended to the end of the query.
 29 |     public private (set) var suffix: QuerySuffixProtocol?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 30 |
 31 |     private let valueTuples: [(column: Column, value: Any)]
/host/spi-builder-workspace/Sources/SwiftKuery/Update.swift:34:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 32 |
 33 |     /// An array of `AuxiliaryTable` which will be used in a query with a WITH clause.
 34 |     public private (set) var with: [AuxiliaryTable]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 35 |
 36 |     private var syntaxError = ""
/host/spi-builder-workspace/Sources/SwiftKuery/ScalarColumnExpression.swift:26:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 24 |
 25 |     /// The scalar function to apply.
 26 |     public private (set) var function: ScalarFunction
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |
 28 |     init(_ function: ScalarFunction) {
/host/spi-builder-workspace/Sources/SwiftKuery/Parameter.swift:22:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
20 | public struct Parameter: Buildable {
21 |     /// An optional name of the parameter.
22 |     public private (set) var name: String?
   |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
23 |
24 |     /// Initialize an instance of Parameter.
/host/spi-builder-workspace/Sources/SwiftKuery/AggregateColumnExpression.swift:26:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 24 |
 25 |     /// The aggregate function to apply.
 26 |     public private (set) var function: AggregateFunction
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |
 28 |     init(_ function: AggregateFunction) {
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:29:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |     /// The SQL WHERE clause containing the filter for rows to retrieve.
 28 |     /// Could be represented with a `Filter` clause or a `String` containing raw SQL.
 29 |     public private (set) var whereClause: QueryFilterProtocol?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 30 |
 31 |     /// A boolean indicating whether the selected values have to be distinct.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:33:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 31 |     /// A boolean indicating whether the selected values have to be distinct.
 32 |     /// If true, corresponds to the SQL SELECT DISTINCT statement.
 33 |     public private (set) var distinct = false
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 34 |
 35 |     /// The number of rows to select.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:37:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 35 |     /// The number of rows to select.
 36 |     /// If specified, corresponds to the SQL SELECT TOP/LIMIT clause.
 37 |     public private (set) var rowsToReturn: Int?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 38 |
 39 |     /// The number of rows to skip.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:41:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 39 |     /// The number of rows to skip.
 40 |     /// If specified, corresponds to the SQL SELECT OFFSET clause.
 41 |     public private (set) var offset: Int?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 42 |
 43 |     /// An array containing `OrderBy` elements to sort the selected rows.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:45:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 43 |     /// An array containing `OrderBy` elements to sort the selected rows.
 44 |     /// The SQL ORDER BY keyword.
 45 |     public private (set) var orderBy: [OrderBy]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 46 |
 47 |     /// An array containing `Column` elements to group the selected rows.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:49:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 47 |     /// An array containing `Column` elements to group the selected rows.
 48 |     /// The SQL GROUP BY statement.
 49 |     public private (set) var groupBy: [Column]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 50 |
 51 |     /// The SQL HAVING clause containing the filter for the rows to select when aggregate functions are used.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:53:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 51 |     /// The SQL HAVING clause containing the filter for the rows to select when aggregate functions are used.
 52 |     /// Could be represented with a `Having` clause or a `String` containing raw SQL.
 53 |     public private (set) var havingClause: QueryHavingProtocol?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     /// The SQL UNION clauses.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:56:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     /// The SQL UNION clauses.
 56 |     public private (set) var unions: [Union]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 57 |
 58 |     /// The SQL JOIN, ON and USING clauses.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:61:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 59 |     /// ON clause can be represented as `Filter` or a `String` containing raw SQL.
 60 |     /// USING clause: an array of `Column` elements that have to match in a JOIN query.
 61 |     public private (set) var joins = [(join: Join, on: QueryFilterProtocol?, using: [Column]?)]()
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 62 |
 63 |     /// An array of `AuxiliaryTable` which will be used in a query with a WITH clause.
/host/spi-builder-workspace/Sources/SwiftKuery/Select.swift:64:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 62 |
 63 |     /// An array of `AuxiliaryTable` which will be used in a query with a WITH clause.
 64 |     public private (set) var with: [AuxiliaryTable]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 65 |
 66 |     private var syntaxError = ""
/host/spi-builder-workspace/Sources/SwiftKuery/Parameter.swift:31:16: warning: static property 'numberedParameterMarker' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |     }
30 |
31 |     static var numberedParameterMarker = "\u{00}\u{01}\u{01}\u{00}"
   |                |- warning: static property 'numberedParameterMarker' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'numberedParameterMarker' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'numberedParameterMarker' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |     static var namedParameterStart = "\u{01}\u{02}\u{02}\u{01}"
33 |     static var namedParameterEnd = "\u{02}\u{03}\u{03}\u{02}"
/host/spi-builder-workspace/Sources/SwiftKuery/Parameter.swift:32:16: warning: static property 'namedParameterStart' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
30 |
31 |     static var numberedParameterMarker = "\u{00}\u{01}\u{01}\u{00}"
32 |     static var namedParameterStart = "\u{01}\u{02}\u{02}\u{01}"
   |                |- warning: static property 'namedParameterStart' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'namedParameterStart' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'namedParameterStart' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |     static var namedParameterEnd = "\u{02}\u{03}\u{03}\u{02}"
34 |
/host/spi-builder-workspace/Sources/SwiftKuery/Parameter.swift:33:16: warning: static property 'namedParameterEnd' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
31 |     static var numberedParameterMarker = "\u{00}\u{01}\u{01}\u{00}"
32 |     static var namedParameterStart = "\u{01}\u{02}\u{02}\u{01}"
33 |     static var namedParameterEnd = "\u{02}\u{03}\u{03}\u{02}"
   |                |- warning: static property 'namedParameterEnd' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'namedParameterEnd' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'namedParameterEnd' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |
35 |     /// Build the parameter using `QueryBuilder`. If the parameter's name is set,
/host/spi-builder-workspace/Sources/SwiftKuery/Insert.swift:28:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 26 |
 27 |     /// An array of rows (values to insert in each row).
 28 |     public private (set) var values: [[Any]]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 29 |
 30 |     /// A String with a clause to be appended to the end of the query.
/host/spi-builder-workspace/Sources/SwiftKuery/Insert.swift:31:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 29 |
 30 |     /// A String with a clause to be appended to the end of the query.
 31 |     public private (set) var suffix: QuerySuffixProtocol?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 32 |
 33 |     /// The select query that retrieves the rows to insert (for INSERT INTO SELECT).
/host/spi-builder-workspace/Sources/SwiftKuery/Insert.swift:34:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 32 |
 33 |     /// The select query that retrieves the rows to insert (for INSERT INTO SELECT).
 34 |     public private (set) var query: Select?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 35 |
 36 |     /// An array of `AuxiliaryTable` which will be used in a query with a WITH clause.
/host/spi-builder-workspace/Sources/SwiftKuery/Insert.swift:37:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 35 |
 36 |     /// An array of `AuxiliaryTable` which will be used in a query with a WITH clause.
 37 |     public private (set) var with: [AuxiliaryTable]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 38 |
 39 |     /// A flag for return ID
/host/spi-builder-workspace/Sources/SwiftKuery/Delete.swift:26:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 24 |     /// The SQL WHERE clause containing the filter for rows to delete.
 25 |     /// Could be represented with a `Filter` clause or a `String` containing raw SQL.
 26 |     public private (set) var whereClause: QueryFilterProtocol?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |
 28 |     /// A String with a clause to be appended to the end of the query.
/host/spi-builder-workspace/Sources/SwiftKuery/Delete.swift:29:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 27 |
 28 |     /// A String with a clause to be appended to the end of the query.
 29 |     public private (set) var suffix: QuerySuffixProtocol?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 30 |
 31 |     /// An array of `AuxiliaryTable` which will be used in a query with a WITH clause.
/host/spi-builder-workspace/Sources/SwiftKuery/Delete.swift:32:12: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 30 |
 31 |     /// An array of `AuxiliaryTable` which will be used in a query with a WITH clause.
 32 |     public private (set) var with: [AuxiliaryTable]?
    |            `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 33 |
 34 |     private var syntaxError = ""
Build complete! (18.55s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "loggerapi",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.9.200",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/Kitura/LoggerAPI.git"
    }
  ],
  "manifest_display_name" : "SwiftKuery",
  "name" : "SwiftKuery",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "SwiftKuery",
      "targets" : [
        "SwiftKuery"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "SwiftKueryTests",
      "module_type" : "SwiftTarget",
      "name" : "SwiftKueryTests",
      "path" : "Tests/SwiftKueryTests",
      "sources" : [
        "CommonUtils.swift",
        "TestAggregateFunctions.swift",
        "TestAlias.swift",
        "TestFilterAndHaving.swift",
        "TestInsert.swift",
        "TestJoin.swift",
        "TestParameters.swift",
        "TestQueryResult.swift",
        "TestRaw.swift",
        "TestSchema.swift",
        "TestSelect.swift",
        "TestSpecialOperators.swift",
        "TestSubqueries.swift",
        "TestSubquery.swift",
        "TestSyntaxError.swift",
        "TestUpdate.swift",
        "VerifyLinuxTestCount.swift"
      ],
      "target_dependencies" : [
        "SwiftKuery"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SwiftKuery",
      "module_type" : "SwiftTarget",
      "name" : "SwiftKuery",
      "path" : "Sources/SwiftKuery",
      "product_dependencies" : [
        "LoggerAPI"
      ],
      "product_memberships" : [
        "SwiftKuery"
      ],
      "sources" : [
        "AggregateColumnExpression.swift",
        "AuxiliaryTable.swift",
        "Buildable.swift",
        "Column.swift",
        "ColumnAndExpressions_Extensions.swift",
        "ColumnCreator.swift",
        "Condition.swift",
        "ConditionalClause.swift",
        "Connection.swift",
        "ConnectionPool.swift",
        "ConnectionPoolConnection.swift",
        "ConnectionPoolOptions.swift",
        "Delete.swift",
        "Field.swift",
        "Filter.swift",
        "FilterAndHaving_Extensions.swift",
        "FilterAndHaving_GlobalFunctions.swift",
        "ForeignKey.swift",
        "Having.swift",
        "Index.swift",
        "IndexColumn.swift",
        "IndexColumnOrdered.swift",
        "Insert.swift",
        "Join.swift",
        "Migration.swift",
        "OrderBy.swift",
        "Parameter.swift",
        "Predicate.swift",
        "PreparedStatement.swift",
        "Query.swift",
        "QueryBuilder.swift",
        "QueryError.swift",
        "QueryResult.swift",
        "QuerySuffixProtocol.swift",
        "Raw.swift",
        "RawField.swift",
        "ResultFetcher.swift",
        "ResultSet.swift",
        "SQLDataType.swift",
        "ScalarColumnExpression.swift",
        "Select.swift",
        "SpecialOperators_Extensions.swift",
        "String+Buildable.swift",
        "Subqueries_GlobalFunctionsAndExtensions.swift",
        "Table.swift",
        "Union.swift",
        "Update.swift",
        "Utils.swift",
        "With.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.0"
}
basic-6.0-latest: Pulling from finestructure/spi-images
Digest: sha256:47d26c99ca4f1ac0a332c85fd5b13ff4390e72115219984a57a68fe9d1063a05
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.0-latest
Done.