Build Information
Failed to build Arrow, reference v21.0.0 (fb3f3d), with Swift 6.3 for Linux on 16 Apr 2026 12:25:49 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:basic-6.3-latest swift build --triple x86_64-unknown-linux-gnu 2>&1Build Log
233 | public var hasNodes: Bool { let o = _accessor.offset(VTOFFSET.nodes.v); return o == 0 ? false : true }
234 | public var nodesCount: Int32 { let o = _accessor.offset(VTOFFSET.nodes.v); return o == 0 ? 0 : _accessor.vector(count: o) }
235 | public func nodes(at index: Int32) -> org_apache_arrow_flatbuf_FieldNode? { let o = _accessor.offset(VTOFFSET.nodes.v); return o == 0 ? nil : _accessor.directRead(of: org_apache_arrow_flatbuf_FieldNode.self, offset: _accessor.vector(at: o) + index * 16) }
| `- error: value of type 'Table' has no member 'directRead'
236 | public func mutableNodes(at index: Int32) -> org_apache_arrow_flatbuf_FieldNode_Mutable? { let o = _accessor.offset(VTOFFSET.nodes.v); return o == 0 ? nil : org_apache_arrow_flatbuf_FieldNode_Mutable(_accessor.bb, o: _accessor.vector(at: o) + index * 16) }
237 | /// Buffers correspond to the pre-ordered flattened buffer tree
/host/spi-builder-workspace/Arrow/Sources/Arrow/Message_generated.swift:245:156: error: value of type 'Table' has no member 'directRead'
243 | public var hasBuffers: Bool { let o = _accessor.offset(VTOFFSET.buffers.v); return o == 0 ? false : true }
244 | public var buffersCount: Int32 { let o = _accessor.offset(VTOFFSET.buffers.v); return o == 0 ? 0 : _accessor.vector(count: o) }
245 | public func buffers(at index: Int32) -> org_apache_arrow_flatbuf_Buffer? { let o = _accessor.offset(VTOFFSET.buffers.v); return o == 0 ? nil : _accessor.directRead(of: org_apache_arrow_flatbuf_Buffer.self, offset: _accessor.vector(at: o) + index * 16) }
| `- error: value of type 'Table' has no member 'directRead'
246 | public func mutableBuffers(at index: Int32) -> org_apache_arrow_flatbuf_Buffer_Mutable? { let o = _accessor.offset(VTOFFSET.buffers.v); return o == 0 ? nil : org_apache_arrow_flatbuf_Buffer_Mutable(_accessor.bb, o: _accessor.vector(at: o) + index * 16) }
247 | /// Optional compression of the message body
/host/spi-builder-workspace/Arrow/Sources/Arrow/ProtoUtil.swift:27:29: error: instance method 'type(type:)' requires that 'org_apache_arrow_flatbuf_Int' conform to 'FlatbuffersInitializable'
25 | switch type {
26 | case .int:
27 | let intType = field.type(type: org_apache_arrow_flatbuf_Int.self)!
| `- error: instance method 'type(type:)' requires that 'org_apache_arrow_flatbuf_Int' conform to 'FlatbuffersInitializable'
28 | let bitWidth = intType.bitWidth
29 | if bitWidth == 8 {
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:1309:15: note: where 'T' = 'org_apache_arrow_flatbuf_Int'
1307 | public var typeType: org_apache_arrow_flatbuf_Type_ { let o = _accessor.offset(VTOFFSET.typeType.v); return o == 0 ? .none_ : org_apache_arrow_flatbuf_Type_(rawValue: _accessor.readBuffer(of: UInt8.self, at: o)) ?? .none_ }
1308 | /// This is the type of the decoded value if the field is dictionary encoded.
1309 | public func type<T: FlatbuffersInitializable>(type: T.Type) -> T? { let o = _accessor.offset(VTOFFSET.type.v); return o == 0 ? nil : _accessor.union(o) }
| `- note: where 'T' = 'org_apache_arrow_flatbuf_Int'
1310 | /// Present only if the field is dictionary encoded.
1311 | public var dictionary: org_apache_arrow_flatbuf_DictionaryEncoding? { let o = _accessor.offset(VTOFFSET.dictionary.v); return o == 0 ? nil : org_apache_arrow_flatbuf_DictionaryEncoding(_accessor.bb, o: _accessor.indirect(o + _accessor.position)) }
/host/spi-builder-workspace/Arrow/Sources/Arrow/ProtoUtil.swift:41:31: error: instance method 'type(type:)' requires that 'org_apache_arrow_flatbuf_FloatingPoint' conform to 'FlatbuffersInitializable'
39 | arrowType = ArrowType(ArrowType.ArrowBool)
40 | case .floatingpoint:
41 | let floatType = field.type(type: org_apache_arrow_flatbuf_FloatingPoint.self)!
| `- error: instance method 'type(type:)' requires that 'org_apache_arrow_flatbuf_FloatingPoint' conform to 'FlatbuffersInitializable'
42 | if floatType.precision == .single {
43 | arrowType = ArrowType(ArrowType.ArrowFloat)
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:1309:15: note: where 'T' = 'org_apache_arrow_flatbuf_FloatingPoint'
1307 | public var typeType: org_apache_arrow_flatbuf_Type_ { let o = _accessor.offset(VTOFFSET.typeType.v); return o == 0 ? .none_ : org_apache_arrow_flatbuf_Type_(rawValue: _accessor.readBuffer(of: UInt8.self, at: o)) ?? .none_ }
1308 | /// This is the type of the decoded value if the field is dictionary encoded.
1309 | public func type<T: FlatbuffersInitializable>(type: T.Type) -> T? { let o = _accessor.offset(VTOFFSET.type.v); return o == 0 ? nil : _accessor.union(o) }
| `- note: where 'T' = 'org_apache_arrow_flatbuf_FloatingPoint'
1310 | /// Present only if the field is dictionary encoded.
1311 | public var dictionary: org_apache_arrow_flatbuf_DictionaryEncoding? { let o = _accessor.offset(VTOFFSET.dictionary.v); return o == 0 ? nil : org_apache_arrow_flatbuf_DictionaryEncoding(_accessor.bb, o: _accessor.indirect(o + _accessor.position)) }
/host/spi-builder-workspace/Arrow/Sources/Arrow/ProtoUtil.swift:42:36: error: cannot infer contextual base in reference to member 'single'
40 | case .floatingpoint:
41 | let floatType = field.type(type: org_apache_arrow_flatbuf_FloatingPoint.self)!
42 | if floatType.precision == .single {
| `- error: cannot infer contextual base in reference to member 'single'
43 | arrowType = ArrowType(ArrowType.ArrowFloat)
44 | } else if floatType.precision == .double {
/host/spi-builder-workspace/Arrow/Sources/Arrow/ProtoUtil.swift:44:43: error: cannot infer contextual base in reference to member 'double'
42 | if floatType.precision == .single {
43 | arrowType = ArrowType(ArrowType.ArrowFloat)
44 | } else if floatType.precision == .double {
| `- error: cannot infer contextual base in reference to member 'double'
45 | arrowType = ArrowType(ArrowType.ArrowDouble)
46 | }
/host/spi-builder-workspace/Arrow/Sources/Arrow/ProtoUtil.swift:52:30: error: instance method 'type(type:)' requires that 'org_apache_arrow_flatbuf_Date' conform to 'FlatbuffersInitializable'
50 | arrowType = ArrowType(ArrowType.ArrowBinary)
51 | case .date:
52 | let dateType = field.type(type: org_apache_arrow_flatbuf_Date.self)!
| `- error: instance method 'type(type:)' requires that 'org_apache_arrow_flatbuf_Date' conform to 'FlatbuffersInitializable'
53 | if dateType.unit == .day {
54 | arrowType = ArrowType(ArrowType.ArrowDate32)
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:1309:15: note: where 'T' = 'org_apache_arrow_flatbuf_Date'
1307 | public var typeType: org_apache_arrow_flatbuf_Type_ { let o = _accessor.offset(VTOFFSET.typeType.v); return o == 0 ? .none_ : org_apache_arrow_flatbuf_Type_(rawValue: _accessor.readBuffer(of: UInt8.self, at: o)) ?? .none_ }
1308 | /// This is the type of the decoded value if the field is dictionary encoded.
1309 | public func type<T: FlatbuffersInitializable>(type: T.Type) -> T? { let o = _accessor.offset(VTOFFSET.type.v); return o == 0 ? nil : _accessor.union(o) }
| `- note: where 'T' = 'org_apache_arrow_flatbuf_Date'
1310 | /// Present only if the field is dictionary encoded.
1311 | public var dictionary: org_apache_arrow_flatbuf_DictionaryEncoding? { let o = _accessor.offset(VTOFFSET.dictionary.v); return o == 0 ? nil : org_apache_arrow_flatbuf_DictionaryEncoding(_accessor.bb, o: _accessor.indirect(o + _accessor.position)) }
/host/spi-builder-workspace/Arrow/Sources/Arrow/ProtoUtil.swift:59:30: error: instance method 'type(type:)' requires that 'org_apache_arrow_flatbuf_Time' conform to 'FlatbuffersInitializable'
57 | }
58 | case .time:
59 | let timeType = field.type(type: org_apache_arrow_flatbuf_Time.self)!
| `- error: instance method 'type(type:)' requires that 'org_apache_arrow_flatbuf_Time' conform to 'FlatbuffersInitializable'
60 | if timeType.unit == .second || timeType.unit == .millisecond {
61 | let arrowUnit: ArrowTime32Unit = timeType.unit == .second ? .seconds : .milliseconds
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:1309:15: note: where 'T' = 'org_apache_arrow_flatbuf_Time'
1307 | public var typeType: org_apache_arrow_flatbuf_Type_ { let o = _accessor.offset(VTOFFSET.typeType.v); return o == 0 ? .none_ : org_apache_arrow_flatbuf_Type_(rawValue: _accessor.readBuffer(of: UInt8.self, at: o)) ?? .none_ }
1308 | /// This is the type of the decoded value if the field is dictionary encoded.
1309 | public func type<T: FlatbuffersInitializable>(type: T.Type) -> T? { let o = _accessor.offset(VTOFFSET.type.v); return o == 0 ? nil : _accessor.union(o) }
| `- note: where 'T' = 'org_apache_arrow_flatbuf_Time'
1310 | /// Present only if the field is dictionary encoded.
1311 | public var dictionary: org_apache_arrow_flatbuf_DictionaryEncoding? { let o = _accessor.offset(VTOFFSET.dictionary.v); return o == 0 ? nil : org_apache_arrow_flatbuf_DictionaryEncoding(_accessor.bb, o: _accessor.indirect(o + _accessor.position)) }
/host/spi-builder-workspace/Arrow/Sources/Arrow/ProtoUtil.swift:60:30: error: cannot infer contextual base in reference to member 'second'
58 | case .time:
59 | let timeType = field.type(type: org_apache_arrow_flatbuf_Time.self)!
60 | if timeType.unit == .second || timeType.unit == .millisecond {
| `- error: cannot infer contextual base in reference to member 'second'
61 | let arrowUnit: ArrowTime32Unit = timeType.unit == .second ? .seconds : .milliseconds
62 | arrowType = ArrowTypeTime32(arrowUnit)
/host/spi-builder-workspace/Arrow/Sources/Arrow/ProtoUtil.swift:60:58: error: cannot infer contextual base in reference to member 'millisecond'
58 | case .time:
59 | let timeType = field.type(type: org_apache_arrow_flatbuf_Time.self)!
60 | if timeType.unit == .second || timeType.unit == .millisecond {
| `- error: cannot infer contextual base in reference to member 'millisecond'
61 | let arrowUnit: ArrowTime32Unit = timeType.unit == .second ? .seconds : .milliseconds
62 | arrowType = ArrowTypeTime32(arrowUnit)
/host/spi-builder-workspace/Arrow/Sources/Arrow/ProtoUtil.swift:61:64: error: cannot infer contextual base in reference to member 'second'
59 | let timeType = field.type(type: org_apache_arrow_flatbuf_Time.self)!
60 | if timeType.unit == .second || timeType.unit == .millisecond {
61 | let arrowUnit: ArrowTime32Unit = timeType.unit == .second ? .seconds : .milliseconds
| `- error: cannot infer contextual base in reference to member 'second'
62 | arrowType = ArrowTypeTime32(arrowUnit)
63 | } else {
/host/spi-builder-workspace/Arrow/Sources/Arrow/ProtoUtil.swift:64:64: error: cannot infer contextual base in reference to member 'microsecond'
62 | arrowType = ArrowTypeTime32(arrowUnit)
63 | } else {
64 | let arrowUnit: ArrowTime64Unit = timeType.unit == .microsecond ? .microseconds : .nanoseconds
| `- error: cannot infer contextual base in reference to member 'microsecond'
65 | arrowType = ArrowTypeTime64(arrowUnit)
66 | }
/host/spi-builder-workspace/Arrow/Sources/Arrow/ProtoUtil.swift:68:35: error: instance method 'type(type:)' requires that 'org_apache_arrow_flatbuf_Timestamp' conform to 'FlatbuffersInitializable'
66 | }
67 | case .timestamp:
68 | let timestampType = field.type(type: org_apache_arrow_flatbuf_Timestamp.self)!
| `- error: instance method 'type(type:)' requires that 'org_apache_arrow_flatbuf_Timestamp' conform to 'FlatbuffersInitializable'
69 | let arrowUnit: ArrowTimestampUnit
70 | switch timestampType.unit {
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:1309:15: note: where 'T' = 'org_apache_arrow_flatbuf_Timestamp'
1307 | public var typeType: org_apache_arrow_flatbuf_Type_ { let o = _accessor.offset(VTOFFSET.typeType.v); return o == 0 ? .none_ : org_apache_arrow_flatbuf_Type_(rawValue: _accessor.readBuffer(of: UInt8.self, at: o)) ?? .none_ }
1308 | /// This is the type of the decoded value if the field is dictionary encoded.
1309 | public func type<T: FlatbuffersInitializable>(type: T.Type) -> T? { let o = _accessor.offset(VTOFFSET.type.v); return o == 0 ? nil : _accessor.union(o) }
| `- note: where 'T' = 'org_apache_arrow_flatbuf_Timestamp'
1310 | /// Present only if the field is dictionary encoded.
1311 | public var dictionary: org_apache_arrow_flatbuf_DictionaryEncoding? { let o = _accessor.offset(VTOFFSET.dictionary.v); return o == 0 ? nil : org_apache_arrow_flatbuf_DictionaryEncoding(_accessor.bb, o: _accessor.indirect(o + _accessor.position)) }
[718/738] Compiling Arrow Message_generated.swift
/host/spi-builder-workspace/Arrow/Sources/Arrow/Message_generated.swift:24:13: warning: cannot use conformance of 'Int8' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
22 | import FlatBuffers
23 |
24 | public enum org_apache_arrow_flatbuf_CompressionType: Int8, Enum, Verifiable {
| |- warning: cannot use conformance of 'Int8' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
| |- note: The missing import of module 'Common' will be added implicitly
| `- note: in associated type 'Self.T' (inferred as 'Int8')
25 | public typealias T = Int8
26 | public static var byteSize: Int { return MemoryLayout<Int8>.size }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Message_generated.swift:39:13: warning: cannot use conformance of 'Int8' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
37 | /// strategies for compressing the IPC message body (like whole-body
38 | /// compression rather than buffer-level) in the future
39 | public enum org_apache_arrow_flatbuf_BodyCompressionMethod: Int8, Enum, Verifiable {
| |- warning: cannot use conformance of 'Int8' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
| |- note: The missing import of module 'Common' will be added implicitly
| `- note: in associated type 'Self.T' (inferred as 'Int8')
40 | public typealias T = Int8
41 | public static var byteSize: Int { return MemoryLayout<Int8>.size }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Message_generated.swift:65:13: warning: cannot use conformance of 'UInt8' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
63 | /// which may include experimental metadata types. For maximum compatibility,
64 | /// it is best to send data using RecordBatch
65 | public enum org_apache_arrow_flatbuf_MessageHeader: UInt8, UnionEnum {
| |- warning: cannot use conformance of 'UInt8' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
| |- note: The missing import of module 'Common' will be added implicitly
| `- note: in associated type 'Self.T' (inferred as 'UInt8')
66 | public typealias T = UInt8
67 |
/host/spi-builder-workspace/Arrow/Sources/Arrow/Message_generated.swift:145:59: error: cannot find type 'FlatBufferObject' in scope
143 | /// would have {length: 5, null_count: 2} for its List node, and {length: 6,
144 | /// null_count: 0} for its Int16 node, as separate FieldNode structs
145 | public struct org_apache_arrow_flatbuf_FieldNode_Mutable: FlatBufferObject {
| `- error: cannot find type 'FlatBufferObject' in scope
146 |
147 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Message_generated.swift:160:57: error: cannot find type 'FlatBufferObject' in scope
158 | /// bodies. Intended for use with RecordBatch but could be used for other
159 | /// message types
160 | public struct org_apache_arrow_flatbuf_BodyCompression: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
161 |
162 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Message_generated.swift:209:53: error: cannot find type 'FlatBufferObject' in scope
207 | /// batch. Some systems call this a "row batch" internally and others a "record
208 | /// batch".
209 | public struct org_apache_arrow_flatbuf_RecordBatch: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
210 |
211 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Message_generated.swift:292:57: error: cannot find type 'FlatBufferObject' in scope
290 | /// may be spread across multiple dictionary batches by using the isDelta
291 | /// flag
292 | public struct org_apache_arrow_flatbuf_DictionaryBatch: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
293 |
294 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Message_generated.swift:345:49: error: cannot find type 'FlatBufferObject' in scope
343 | }
344 |
345 | public struct org_apache_arrow_flatbuf_Message: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
346 |
347 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Message_generated.swift:235:155: error: value of type 'Table' has no member 'directRead'
233 | public var hasNodes: Bool { let o = _accessor.offset(VTOFFSET.nodes.v); return o == 0 ? false : true }
234 | public var nodesCount: Int32 { let o = _accessor.offset(VTOFFSET.nodes.v); return o == 0 ? 0 : _accessor.vector(count: o) }
235 | public func nodes(at index: Int32) -> org_apache_arrow_flatbuf_FieldNode? { let o = _accessor.offset(VTOFFSET.nodes.v); return o == 0 ? nil : _accessor.directRead(of: org_apache_arrow_flatbuf_FieldNode.self, offset: _accessor.vector(at: o) + index * 16) }
| `- error: value of type 'Table' has no member 'directRead'
236 | public func mutableNodes(at index: Int32) -> org_apache_arrow_flatbuf_FieldNode_Mutable? { let o = _accessor.offset(VTOFFSET.nodes.v); return o == 0 ? nil : org_apache_arrow_flatbuf_FieldNode_Mutable(_accessor.bb, o: _accessor.vector(at: o) + index * 16) }
237 | /// Buffers correspond to the pre-ordered flattened buffer tree
/host/spi-builder-workspace/Arrow/Sources/Arrow/Message_generated.swift:245:156: error: value of type 'Table' has no member 'directRead'
243 | public var hasBuffers: Bool { let o = _accessor.offset(VTOFFSET.buffers.v); return o == 0 ? false : true }
244 | public var buffersCount: Int32 { let o = _accessor.offset(VTOFFSET.buffers.v); return o == 0 ? 0 : _accessor.vector(count: o) }
245 | public func buffers(at index: Int32) -> org_apache_arrow_flatbuf_Buffer? { let o = _accessor.offset(VTOFFSET.buffers.v); return o == 0 ? nil : _accessor.directRead(of: org_apache_arrow_flatbuf_Buffer.self, offset: _accessor.vector(at: o) + index * 16) }
| `- error: value of type 'Table' has no member 'directRead'
246 | public func mutableBuffers(at index: Int32) -> org_apache_arrow_flatbuf_Buffer_Mutable? { let o = _accessor.offset(VTOFFSET.buffers.v); return o == 0 ? nil : org_apache_arrow_flatbuf_Buffer_Mutable(_accessor.bb, o: _accessor.vector(at: o) + index * 16) }
247 | /// Optional compression of the message body
/host/spi-builder-workspace/Arrow/Sources/Arrow/ProtoUtil.swift:27:29: error: instance method 'type(type:)' requires that 'org_apache_arrow_flatbuf_Int' conform to 'FlatbuffersInitializable'
25 | switch type {
26 | case .int:
27 | let intType = field.type(type: org_apache_arrow_flatbuf_Int.self)!
| `- error: instance method 'type(type:)' requires that 'org_apache_arrow_flatbuf_Int' conform to 'FlatbuffersInitializable'
28 | let bitWidth = intType.bitWidth
29 | if bitWidth == 8 {
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:1309:15: note: where 'T' = 'org_apache_arrow_flatbuf_Int'
1307 | public var typeType: org_apache_arrow_flatbuf_Type_ { let o = _accessor.offset(VTOFFSET.typeType.v); return o == 0 ? .none_ : org_apache_arrow_flatbuf_Type_(rawValue: _accessor.readBuffer(of: UInt8.self, at: o)) ?? .none_ }
1308 | /// This is the type of the decoded value if the field is dictionary encoded.
1309 | public func type<T: FlatbuffersInitializable>(type: T.Type) -> T? { let o = _accessor.offset(VTOFFSET.type.v); return o == 0 ? nil : _accessor.union(o) }
| `- note: where 'T' = 'org_apache_arrow_flatbuf_Int'
1310 | /// Present only if the field is dictionary encoded.
1311 | public var dictionary: org_apache_arrow_flatbuf_DictionaryEncoding? { let o = _accessor.offset(VTOFFSET.dictionary.v); return o == 0 ? nil : org_apache_arrow_flatbuf_DictionaryEncoding(_accessor.bb, o: _accessor.indirect(o + _accessor.position)) }
/host/spi-builder-workspace/Arrow/Sources/Arrow/ProtoUtil.swift:41:31: error: instance method 'type(type:)' requires that 'org_apache_arrow_flatbuf_FloatingPoint' conform to 'FlatbuffersInitializable'
39 | arrowType = ArrowType(ArrowType.ArrowBool)
40 | case .floatingpoint:
41 | let floatType = field.type(type: org_apache_arrow_flatbuf_FloatingPoint.self)!
| `- error: instance method 'type(type:)' requires that 'org_apache_arrow_flatbuf_FloatingPoint' conform to 'FlatbuffersInitializable'
42 | if floatType.precision == .single {
43 | arrowType = ArrowType(ArrowType.ArrowFloat)
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:1309:15: note: where 'T' = 'org_apache_arrow_flatbuf_FloatingPoint'
1307 | public var typeType: org_apache_arrow_flatbuf_Type_ { let o = _accessor.offset(VTOFFSET.typeType.v); return o == 0 ? .none_ : org_apache_arrow_flatbuf_Type_(rawValue: _accessor.readBuffer(of: UInt8.self, at: o)) ?? .none_ }
1308 | /// This is the type of the decoded value if the field is dictionary encoded.
1309 | public func type<T: FlatbuffersInitializable>(type: T.Type) -> T? { let o = _accessor.offset(VTOFFSET.type.v); return o == 0 ? nil : _accessor.union(o) }
| `- note: where 'T' = 'org_apache_arrow_flatbuf_FloatingPoint'
1310 | /// Present only if the field is dictionary encoded.
1311 | public var dictionary: org_apache_arrow_flatbuf_DictionaryEncoding? { let o = _accessor.offset(VTOFFSET.dictionary.v); return o == 0 ? nil : org_apache_arrow_flatbuf_DictionaryEncoding(_accessor.bb, o: _accessor.indirect(o + _accessor.position)) }
/host/spi-builder-workspace/Arrow/Sources/Arrow/ProtoUtil.swift:42:36: error: cannot infer contextual base in reference to member 'single'
40 | case .floatingpoint:
41 | let floatType = field.type(type: org_apache_arrow_flatbuf_FloatingPoint.self)!
42 | if floatType.precision == .single {
| `- error: cannot infer contextual base in reference to member 'single'
43 | arrowType = ArrowType(ArrowType.ArrowFloat)
44 | } else if floatType.precision == .double {
/host/spi-builder-workspace/Arrow/Sources/Arrow/ProtoUtil.swift:44:43: error: cannot infer contextual base in reference to member 'double'
42 | if floatType.precision == .single {
43 | arrowType = ArrowType(ArrowType.ArrowFloat)
44 | } else if floatType.precision == .double {
| `- error: cannot infer contextual base in reference to member 'double'
45 | arrowType = ArrowType(ArrowType.ArrowDouble)
46 | }
/host/spi-builder-workspace/Arrow/Sources/Arrow/ProtoUtil.swift:52:30: error: instance method 'type(type:)' requires that 'org_apache_arrow_flatbuf_Date' conform to 'FlatbuffersInitializable'
50 | arrowType = ArrowType(ArrowType.ArrowBinary)
51 | case .date:
52 | let dateType = field.type(type: org_apache_arrow_flatbuf_Date.self)!
| `- error: instance method 'type(type:)' requires that 'org_apache_arrow_flatbuf_Date' conform to 'FlatbuffersInitializable'
53 | if dateType.unit == .day {
54 | arrowType = ArrowType(ArrowType.ArrowDate32)
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:1309:15: note: where 'T' = 'org_apache_arrow_flatbuf_Date'
1307 | public var typeType: org_apache_arrow_flatbuf_Type_ { let o = _accessor.offset(VTOFFSET.typeType.v); return o == 0 ? .none_ : org_apache_arrow_flatbuf_Type_(rawValue: _accessor.readBuffer(of: UInt8.self, at: o)) ?? .none_ }
1308 | /// This is the type of the decoded value if the field is dictionary encoded.
1309 | public func type<T: FlatbuffersInitializable>(type: T.Type) -> T? { let o = _accessor.offset(VTOFFSET.type.v); return o == 0 ? nil : _accessor.union(o) }
| `- note: where 'T' = 'org_apache_arrow_flatbuf_Date'
1310 | /// Present only if the field is dictionary encoded.
1311 | public var dictionary: org_apache_arrow_flatbuf_DictionaryEncoding? { let o = _accessor.offset(VTOFFSET.dictionary.v); return o == 0 ? nil : org_apache_arrow_flatbuf_DictionaryEncoding(_accessor.bb, o: _accessor.indirect(o + _accessor.position)) }
/host/spi-builder-workspace/Arrow/Sources/Arrow/ProtoUtil.swift:59:30: error: instance method 'type(type:)' requires that 'org_apache_arrow_flatbuf_Time' conform to 'FlatbuffersInitializable'
57 | }
58 | case .time:
59 | let timeType = field.type(type: org_apache_arrow_flatbuf_Time.self)!
| `- error: instance method 'type(type:)' requires that 'org_apache_arrow_flatbuf_Time' conform to 'FlatbuffersInitializable'
60 | if timeType.unit == .second || timeType.unit == .millisecond {
61 | let arrowUnit: ArrowTime32Unit = timeType.unit == .second ? .seconds : .milliseconds
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:1309:15: note: where 'T' = 'org_apache_arrow_flatbuf_Time'
1307 | public var typeType: org_apache_arrow_flatbuf_Type_ { let o = _accessor.offset(VTOFFSET.typeType.v); return o == 0 ? .none_ : org_apache_arrow_flatbuf_Type_(rawValue: _accessor.readBuffer(of: UInt8.self, at: o)) ?? .none_ }
1308 | /// This is the type of the decoded value if the field is dictionary encoded.
1309 | public func type<T: FlatbuffersInitializable>(type: T.Type) -> T? { let o = _accessor.offset(VTOFFSET.type.v); return o == 0 ? nil : _accessor.union(o) }
| `- note: where 'T' = 'org_apache_arrow_flatbuf_Time'
1310 | /// Present only if the field is dictionary encoded.
1311 | public var dictionary: org_apache_arrow_flatbuf_DictionaryEncoding? { let o = _accessor.offset(VTOFFSET.dictionary.v); return o == 0 ? nil : org_apache_arrow_flatbuf_DictionaryEncoding(_accessor.bb, o: _accessor.indirect(o + _accessor.position)) }
/host/spi-builder-workspace/Arrow/Sources/Arrow/ProtoUtil.swift:60:30: error: cannot infer contextual base in reference to member 'second'
58 | case .time:
59 | let timeType = field.type(type: org_apache_arrow_flatbuf_Time.self)!
60 | if timeType.unit == .second || timeType.unit == .millisecond {
| `- error: cannot infer contextual base in reference to member 'second'
61 | let arrowUnit: ArrowTime32Unit = timeType.unit == .second ? .seconds : .milliseconds
62 | arrowType = ArrowTypeTime32(arrowUnit)
/host/spi-builder-workspace/Arrow/Sources/Arrow/ProtoUtil.swift:60:58: error: cannot infer contextual base in reference to member 'millisecond'
58 | case .time:
59 | let timeType = field.type(type: org_apache_arrow_flatbuf_Time.self)!
60 | if timeType.unit == .second || timeType.unit == .millisecond {
| `- error: cannot infer contextual base in reference to member 'millisecond'
61 | let arrowUnit: ArrowTime32Unit = timeType.unit == .second ? .seconds : .milliseconds
62 | arrowType = ArrowTypeTime32(arrowUnit)
/host/spi-builder-workspace/Arrow/Sources/Arrow/ProtoUtil.swift:61:64: error: cannot infer contextual base in reference to member 'second'
59 | let timeType = field.type(type: org_apache_arrow_flatbuf_Time.self)!
60 | if timeType.unit == .second || timeType.unit == .millisecond {
61 | let arrowUnit: ArrowTime32Unit = timeType.unit == .second ? .seconds : .milliseconds
| `- error: cannot infer contextual base in reference to member 'second'
62 | arrowType = ArrowTypeTime32(arrowUnit)
63 | } else {
/host/spi-builder-workspace/Arrow/Sources/Arrow/ProtoUtil.swift:64:64: error: cannot infer contextual base in reference to member 'microsecond'
62 | arrowType = ArrowTypeTime32(arrowUnit)
63 | } else {
64 | let arrowUnit: ArrowTime64Unit = timeType.unit == .microsecond ? .microseconds : .nanoseconds
| `- error: cannot infer contextual base in reference to member 'microsecond'
65 | arrowType = ArrowTypeTime64(arrowUnit)
66 | }
/host/spi-builder-workspace/Arrow/Sources/Arrow/ProtoUtil.swift:68:35: error: instance method 'type(type:)' requires that 'org_apache_arrow_flatbuf_Timestamp' conform to 'FlatbuffersInitializable'
66 | }
67 | case .timestamp:
68 | let timestampType = field.type(type: org_apache_arrow_flatbuf_Timestamp.self)!
| `- error: instance method 'type(type:)' requires that 'org_apache_arrow_flatbuf_Timestamp' conform to 'FlatbuffersInitializable'
69 | let arrowUnit: ArrowTimestampUnit
70 | switch timestampType.unit {
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:1309:15: note: where 'T' = 'org_apache_arrow_flatbuf_Timestamp'
1307 | public var typeType: org_apache_arrow_flatbuf_Type_ { let o = _accessor.offset(VTOFFSET.typeType.v); return o == 0 ? .none_ : org_apache_arrow_flatbuf_Type_(rawValue: _accessor.readBuffer(of: UInt8.self, at: o)) ?? .none_ }
1308 | /// This is the type of the decoded value if the field is dictionary encoded.
1309 | public func type<T: FlatbuffersInitializable>(type: T.Type) -> T? { let o = _accessor.offset(VTOFFSET.type.v); return o == 0 ? nil : _accessor.union(o) }
| `- note: where 'T' = 'org_apache_arrow_flatbuf_Timestamp'
1310 | /// Present only if the field is dictionary encoded.
1311 | public var dictionary: org_apache_arrow_flatbuf_DictionaryEncoding? { let o = _accessor.offset(VTOFFSET.dictionary.v); return o == 0 ? nil : org_apache_arrow_flatbuf_DictionaryEncoding(_accessor.bb, o: _accessor.indirect(o + _accessor.position)) }
[719/738] Compiling Arrow ProtoUtil.swift
/host/spi-builder-workspace/Arrow/Sources/Arrow/Message_generated.swift:24:13: warning: cannot use conformance of 'Int8' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
22 | import FlatBuffers
23 |
24 | public enum org_apache_arrow_flatbuf_CompressionType: Int8, Enum, Verifiable {
| |- warning: cannot use conformance of 'Int8' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
| |- note: The missing import of module 'Common' will be added implicitly
| `- note: in associated type 'Self.T' (inferred as 'Int8')
25 | public typealias T = Int8
26 | public static var byteSize: Int { return MemoryLayout<Int8>.size }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Message_generated.swift:39:13: warning: cannot use conformance of 'Int8' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
37 | /// strategies for compressing the IPC message body (like whole-body
38 | /// compression rather than buffer-level) in the future
39 | public enum org_apache_arrow_flatbuf_BodyCompressionMethod: Int8, Enum, Verifiable {
| |- warning: cannot use conformance of 'Int8' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
| |- note: The missing import of module 'Common' will be added implicitly
| `- note: in associated type 'Self.T' (inferred as 'Int8')
40 | public typealias T = Int8
41 | public static var byteSize: Int { return MemoryLayout<Int8>.size }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Message_generated.swift:65:13: warning: cannot use conformance of 'UInt8' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
63 | /// which may include experimental metadata types. For maximum compatibility,
64 | /// it is best to send data using RecordBatch
65 | public enum org_apache_arrow_flatbuf_MessageHeader: UInt8, UnionEnum {
| |- warning: cannot use conformance of 'UInt8' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
| |- note: The missing import of module 'Common' will be added implicitly
| `- note: in associated type 'Self.T' (inferred as 'UInt8')
66 | public typealias T = UInt8
67 |
/host/spi-builder-workspace/Arrow/Sources/Arrow/Message_generated.swift:145:59: error: cannot find type 'FlatBufferObject' in scope
143 | /// would have {length: 5, null_count: 2} for its List node, and {length: 6,
144 | /// null_count: 0} for its Int16 node, as separate FieldNode structs
145 | public struct org_apache_arrow_flatbuf_FieldNode_Mutable: FlatBufferObject {
| `- error: cannot find type 'FlatBufferObject' in scope
146 |
147 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Message_generated.swift:160:57: error: cannot find type 'FlatBufferObject' in scope
158 | /// bodies. Intended for use with RecordBatch but could be used for other
159 | /// message types
160 | public struct org_apache_arrow_flatbuf_BodyCompression: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
161 |
162 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Message_generated.swift:209:53: error: cannot find type 'FlatBufferObject' in scope
207 | /// batch. Some systems call this a "row batch" internally and others a "record
208 | /// batch".
209 | public struct org_apache_arrow_flatbuf_RecordBatch: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
210 |
211 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Message_generated.swift:292:57: error: cannot find type 'FlatBufferObject' in scope
290 | /// may be spread across multiple dictionary batches by using the isDelta
291 | /// flag
292 | public struct org_apache_arrow_flatbuf_DictionaryBatch: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
293 |
294 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Message_generated.swift:345:49: error: cannot find type 'FlatBufferObject' in scope
343 | }
344 |
345 | public struct org_apache_arrow_flatbuf_Message: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
346 |
347 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Message_generated.swift:235:155: error: value of type 'Table' has no member 'directRead'
233 | public var hasNodes: Bool { let o = _accessor.offset(VTOFFSET.nodes.v); return o == 0 ? false : true }
234 | public var nodesCount: Int32 { let o = _accessor.offset(VTOFFSET.nodes.v); return o == 0 ? 0 : _accessor.vector(count: o) }
235 | public func nodes(at index: Int32) -> org_apache_arrow_flatbuf_FieldNode? { let o = _accessor.offset(VTOFFSET.nodes.v); return o == 0 ? nil : _accessor.directRead(of: org_apache_arrow_flatbuf_FieldNode.self, offset: _accessor.vector(at: o) + index * 16) }
| `- error: value of type 'Table' has no member 'directRead'
236 | public func mutableNodes(at index: Int32) -> org_apache_arrow_flatbuf_FieldNode_Mutable? { let o = _accessor.offset(VTOFFSET.nodes.v); return o == 0 ? nil : org_apache_arrow_flatbuf_FieldNode_Mutable(_accessor.bb, o: _accessor.vector(at: o) + index * 16) }
237 | /// Buffers correspond to the pre-ordered flattened buffer tree
/host/spi-builder-workspace/Arrow/Sources/Arrow/Message_generated.swift:245:156: error: value of type 'Table' has no member 'directRead'
243 | public var hasBuffers: Bool { let o = _accessor.offset(VTOFFSET.buffers.v); return o == 0 ? false : true }
244 | public var buffersCount: Int32 { let o = _accessor.offset(VTOFFSET.buffers.v); return o == 0 ? 0 : _accessor.vector(count: o) }
245 | public func buffers(at index: Int32) -> org_apache_arrow_flatbuf_Buffer? { let o = _accessor.offset(VTOFFSET.buffers.v); return o == 0 ? nil : _accessor.directRead(of: org_apache_arrow_flatbuf_Buffer.self, offset: _accessor.vector(at: o) + index * 16) }
| `- error: value of type 'Table' has no member 'directRead'
246 | public func mutableBuffers(at index: Int32) -> org_apache_arrow_flatbuf_Buffer_Mutable? { let o = _accessor.offset(VTOFFSET.buffers.v); return o == 0 ? nil : org_apache_arrow_flatbuf_Buffer_Mutable(_accessor.bb, o: _accessor.vector(at: o) + index * 16) }
247 | /// Optional compression of the message body
/host/spi-builder-workspace/Arrow/Sources/Arrow/ProtoUtil.swift:27:29: error: instance method 'type(type:)' requires that 'org_apache_arrow_flatbuf_Int' conform to 'FlatbuffersInitializable'
25 | switch type {
26 | case .int:
27 | let intType = field.type(type: org_apache_arrow_flatbuf_Int.self)!
| `- error: instance method 'type(type:)' requires that 'org_apache_arrow_flatbuf_Int' conform to 'FlatbuffersInitializable'
28 | let bitWidth = intType.bitWidth
29 | if bitWidth == 8 {
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:1309:15: note: where 'T' = 'org_apache_arrow_flatbuf_Int'
1307 | public var typeType: org_apache_arrow_flatbuf_Type_ { let o = _accessor.offset(VTOFFSET.typeType.v); return o == 0 ? .none_ : org_apache_arrow_flatbuf_Type_(rawValue: _accessor.readBuffer(of: UInt8.self, at: o)) ?? .none_ }
1308 | /// This is the type of the decoded value if the field is dictionary encoded.
1309 | public func type<T: FlatbuffersInitializable>(type: T.Type) -> T? { let o = _accessor.offset(VTOFFSET.type.v); return o == 0 ? nil : _accessor.union(o) }
| `- note: where 'T' = 'org_apache_arrow_flatbuf_Int'
1310 | /// Present only if the field is dictionary encoded.
1311 | public var dictionary: org_apache_arrow_flatbuf_DictionaryEncoding? { let o = _accessor.offset(VTOFFSET.dictionary.v); return o == 0 ? nil : org_apache_arrow_flatbuf_DictionaryEncoding(_accessor.bb, o: _accessor.indirect(o + _accessor.position)) }
/host/spi-builder-workspace/Arrow/Sources/Arrow/ProtoUtil.swift:41:31: error: instance method 'type(type:)' requires that 'org_apache_arrow_flatbuf_FloatingPoint' conform to 'FlatbuffersInitializable'
39 | arrowType = ArrowType(ArrowType.ArrowBool)
40 | case .floatingpoint:
41 | let floatType = field.type(type: org_apache_arrow_flatbuf_FloatingPoint.self)!
| `- error: instance method 'type(type:)' requires that 'org_apache_arrow_flatbuf_FloatingPoint' conform to 'FlatbuffersInitializable'
42 | if floatType.precision == .single {
43 | arrowType = ArrowType(ArrowType.ArrowFloat)
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:1309:15: note: where 'T' = 'org_apache_arrow_flatbuf_FloatingPoint'
1307 | public var typeType: org_apache_arrow_flatbuf_Type_ { let o = _accessor.offset(VTOFFSET.typeType.v); return o == 0 ? .none_ : org_apache_arrow_flatbuf_Type_(rawValue: _accessor.readBuffer(of: UInt8.self, at: o)) ?? .none_ }
1308 | /// This is the type of the decoded value if the field is dictionary encoded.
1309 | public func type<T: FlatbuffersInitializable>(type: T.Type) -> T? { let o = _accessor.offset(VTOFFSET.type.v); return o == 0 ? nil : _accessor.union(o) }
| `- note: where 'T' = 'org_apache_arrow_flatbuf_FloatingPoint'
1310 | /// Present only if the field is dictionary encoded.
1311 | public var dictionary: org_apache_arrow_flatbuf_DictionaryEncoding? { let o = _accessor.offset(VTOFFSET.dictionary.v); return o == 0 ? nil : org_apache_arrow_flatbuf_DictionaryEncoding(_accessor.bb, o: _accessor.indirect(o + _accessor.position)) }
/host/spi-builder-workspace/Arrow/Sources/Arrow/ProtoUtil.swift:42:36: error: cannot infer contextual base in reference to member 'single'
40 | case .floatingpoint:
41 | let floatType = field.type(type: org_apache_arrow_flatbuf_FloatingPoint.self)!
42 | if floatType.precision == .single {
| `- error: cannot infer contextual base in reference to member 'single'
43 | arrowType = ArrowType(ArrowType.ArrowFloat)
44 | } else if floatType.precision == .double {
/host/spi-builder-workspace/Arrow/Sources/Arrow/ProtoUtil.swift:44:43: error: cannot infer contextual base in reference to member 'double'
42 | if floatType.precision == .single {
43 | arrowType = ArrowType(ArrowType.ArrowFloat)
44 | } else if floatType.precision == .double {
| `- error: cannot infer contextual base in reference to member 'double'
45 | arrowType = ArrowType(ArrowType.ArrowDouble)
46 | }
/host/spi-builder-workspace/Arrow/Sources/Arrow/ProtoUtil.swift:52:30: error: instance method 'type(type:)' requires that 'org_apache_arrow_flatbuf_Date' conform to 'FlatbuffersInitializable'
50 | arrowType = ArrowType(ArrowType.ArrowBinary)
51 | case .date:
52 | let dateType = field.type(type: org_apache_arrow_flatbuf_Date.self)!
| `- error: instance method 'type(type:)' requires that 'org_apache_arrow_flatbuf_Date' conform to 'FlatbuffersInitializable'
53 | if dateType.unit == .day {
54 | arrowType = ArrowType(ArrowType.ArrowDate32)
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:1309:15: note: where 'T' = 'org_apache_arrow_flatbuf_Date'
1307 | public var typeType: org_apache_arrow_flatbuf_Type_ { let o = _accessor.offset(VTOFFSET.typeType.v); return o == 0 ? .none_ : org_apache_arrow_flatbuf_Type_(rawValue: _accessor.readBuffer(of: UInt8.self, at: o)) ?? .none_ }
1308 | /// This is the type of the decoded value if the field is dictionary encoded.
1309 | public func type<T: FlatbuffersInitializable>(type: T.Type) -> T? { let o = _accessor.offset(VTOFFSET.type.v); return o == 0 ? nil : _accessor.union(o) }
| `- note: where 'T' = 'org_apache_arrow_flatbuf_Date'
1310 | /// Present only if the field is dictionary encoded.
1311 | public var dictionary: org_apache_arrow_flatbuf_DictionaryEncoding? { let o = _accessor.offset(VTOFFSET.dictionary.v); return o == 0 ? nil : org_apache_arrow_flatbuf_DictionaryEncoding(_accessor.bb, o: _accessor.indirect(o + _accessor.position)) }
/host/spi-builder-workspace/Arrow/Sources/Arrow/ProtoUtil.swift:59:30: error: instance method 'type(type:)' requires that 'org_apache_arrow_flatbuf_Time' conform to 'FlatbuffersInitializable'
57 | }
58 | case .time:
59 | let timeType = field.type(type: org_apache_arrow_flatbuf_Time.self)!
| `- error: instance method 'type(type:)' requires that 'org_apache_arrow_flatbuf_Time' conform to 'FlatbuffersInitializable'
60 | if timeType.unit == .second || timeType.unit == .millisecond {
61 | let arrowUnit: ArrowTime32Unit = timeType.unit == .second ? .seconds : .milliseconds
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:1309:15: note: where 'T' = 'org_apache_arrow_flatbuf_Time'
1307 | public var typeType: org_apache_arrow_flatbuf_Type_ { let o = _accessor.offset(VTOFFSET.typeType.v); return o == 0 ? .none_ : org_apache_arrow_flatbuf_Type_(rawValue: _accessor.readBuffer(of: UInt8.self, at: o)) ?? .none_ }
1308 | /// This is the type of the decoded value if the field is dictionary encoded.
1309 | public func type<T: FlatbuffersInitializable>(type: T.Type) -> T? { let o = _accessor.offset(VTOFFSET.type.v); return o == 0 ? nil : _accessor.union(o) }
| `- note: where 'T' = 'org_apache_arrow_flatbuf_Time'
1310 | /// Present only if the field is dictionary encoded.
1311 | public var dictionary: org_apache_arrow_flatbuf_DictionaryEncoding? { let o = _accessor.offset(VTOFFSET.dictionary.v); return o == 0 ? nil : org_apache_arrow_flatbuf_DictionaryEncoding(_accessor.bb, o: _accessor.indirect(o + _accessor.position)) }
/host/spi-builder-workspace/Arrow/Sources/Arrow/ProtoUtil.swift:60:30: error: cannot infer contextual base in reference to member 'second'
58 | case .time:
59 | let timeType = field.type(type: org_apache_arrow_flatbuf_Time.self)!
60 | if timeType.unit == .second || timeType.unit == .millisecond {
| `- error: cannot infer contextual base in reference to member 'second'
61 | let arrowUnit: ArrowTime32Unit = timeType.unit == .second ? .seconds : .milliseconds
62 | arrowType = ArrowTypeTime32(arrowUnit)
/host/spi-builder-workspace/Arrow/Sources/Arrow/ProtoUtil.swift:60:58: error: cannot infer contextual base in reference to member 'millisecond'
58 | case .time:
59 | let timeType = field.type(type: org_apache_arrow_flatbuf_Time.self)!
60 | if timeType.unit == .second || timeType.unit == .millisecond {
| `- error: cannot infer contextual base in reference to member 'millisecond'
61 | let arrowUnit: ArrowTime32Unit = timeType.unit == .second ? .seconds : .milliseconds
62 | arrowType = ArrowTypeTime32(arrowUnit)
/host/spi-builder-workspace/Arrow/Sources/Arrow/ProtoUtil.swift:61:64: error: cannot infer contextual base in reference to member 'second'
59 | let timeType = field.type(type: org_apache_arrow_flatbuf_Time.self)!
60 | if timeType.unit == .second || timeType.unit == .millisecond {
61 | let arrowUnit: ArrowTime32Unit = timeType.unit == .second ? .seconds : .milliseconds
| `- error: cannot infer contextual base in reference to member 'second'
62 | arrowType = ArrowTypeTime32(arrowUnit)
63 | } else {
/host/spi-builder-workspace/Arrow/Sources/Arrow/ProtoUtil.swift:64:64: error: cannot infer contextual base in reference to member 'microsecond'
62 | arrowType = ArrowTypeTime32(arrowUnit)
63 | } else {
64 | let arrowUnit: ArrowTime64Unit = timeType.unit == .microsecond ? .microseconds : .nanoseconds
| `- error: cannot infer contextual base in reference to member 'microsecond'
65 | arrowType = ArrowTypeTime64(arrowUnit)
66 | }
/host/spi-builder-workspace/Arrow/Sources/Arrow/ProtoUtil.swift:68:35: error: instance method 'type(type:)' requires that 'org_apache_arrow_flatbuf_Timestamp' conform to 'FlatbuffersInitializable'
66 | }
67 | case .timestamp:
68 | let timestampType = field.type(type: org_apache_arrow_flatbuf_Timestamp.self)!
| `- error: instance method 'type(type:)' requires that 'org_apache_arrow_flatbuf_Timestamp' conform to 'FlatbuffersInitializable'
69 | let arrowUnit: ArrowTimestampUnit
70 | switch timestampType.unit {
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:1309:15: note: where 'T' = 'org_apache_arrow_flatbuf_Timestamp'
1307 | public var typeType: org_apache_arrow_flatbuf_Type_ { let o = _accessor.offset(VTOFFSET.typeType.v); return o == 0 ? .none_ : org_apache_arrow_flatbuf_Type_(rawValue: _accessor.readBuffer(of: UInt8.self, at: o)) ?? .none_ }
1308 | /// This is the type of the decoded value if the field is dictionary encoded.
1309 | public func type<T: FlatbuffersInitializable>(type: T.Type) -> T? { let o = _accessor.offset(VTOFFSET.type.v); return o == 0 ? nil : _accessor.union(o) }
| `- note: where 'T' = 'org_apache_arrow_flatbuf_Timestamp'
1310 | /// Present only if the field is dictionary encoded.
1311 | public var dictionary: org_apache_arrow_flatbuf_DictionaryEncoding? { let o = _accessor.offset(VTOFFSET.dictionary.v); return o == 0 ? nil : org_apache_arrow_flatbuf_DictionaryEncoding(_accessor.bb, o: _accessor.indirect(o + _accessor.position)) }
error: emit-module command failed with exit code 1 (use -v to see invocation)
[720/738] Emitting module Arrow
/host/spi-builder-workspace/Arrow/Sources/Arrow/File_generated.swift:69:55: error: cannot find type 'FlatBufferObject' in scope
67 | }
68 |
69 | public struct org_apache_arrow_flatbuf_Block_Mutable: FlatBufferObject {
| `- error: cannot find type 'FlatBufferObject' in scope
70 |
71 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/File_generated.swift:85:48: error: cannot find type 'FlatBufferObject' in scope
83 | /// Arrow File metadata
84 | ///
85 | public struct org_apache_arrow_flatbuf_Footer: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
86 |
87 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Message_generated.swift:24:13: warning: cannot use conformance of 'Int8' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
22 | import FlatBuffers
23 |
24 | public enum org_apache_arrow_flatbuf_CompressionType: Int8, Enum, Verifiable {
| |- warning: cannot use conformance of 'Int8' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
| |- note: The missing import of module 'Common' will be added implicitly
| `- note: in associated type 'Self.T' (inferred as 'Int8')
25 | public typealias T = Int8
26 | public static var byteSize: Int { return MemoryLayout<Int8>.size }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Message_generated.swift:39:13: warning: cannot use conformance of 'Int8' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
37 | /// strategies for compressing the IPC message body (like whole-body
38 | /// compression rather than buffer-level) in the future
39 | public enum org_apache_arrow_flatbuf_BodyCompressionMethod: Int8, Enum, Verifiable {
| |- warning: cannot use conformance of 'Int8' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
| |- note: The missing import of module 'Common' will be added implicitly
| `- note: in associated type 'Self.T' (inferred as 'Int8')
40 | public typealias T = Int8
41 | public static var byteSize: Int { return MemoryLayout<Int8>.size }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Message_generated.swift:65:13: warning: cannot use conformance of 'UInt8' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
63 | /// which may include experimental metadata types. For maximum compatibility,
64 | /// it is best to send data using RecordBatch
65 | public enum org_apache_arrow_flatbuf_MessageHeader: UInt8, UnionEnum {
| |- warning: cannot use conformance of 'UInt8' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
| |- note: The missing import of module 'Common' will be added implicitly
| `- note: in associated type 'Self.T' (inferred as 'UInt8')
66 | public typealias T = UInt8
67 |
/host/spi-builder-workspace/Arrow/Sources/Arrow/Message_generated.swift:145:59: error: cannot find type 'FlatBufferObject' in scope
143 | /// would have {length: 5, null_count: 2} for its List node, and {length: 6,
144 | /// null_count: 0} for its Int16 node, as separate FieldNode structs
145 | public struct org_apache_arrow_flatbuf_FieldNode_Mutable: FlatBufferObject {
| `- error: cannot find type 'FlatBufferObject' in scope
146 |
147 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Message_generated.swift:160:57: error: cannot find type 'FlatBufferObject' in scope
158 | /// bodies. Intended for use with RecordBatch but could be used for other
159 | /// message types
160 | public struct org_apache_arrow_flatbuf_BodyCompression: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
161 |
162 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Message_generated.swift:209:53: error: cannot find type 'FlatBufferObject' in scope
207 | /// batch. Some systems call this a "row batch" internally and others a "record
208 | /// batch".
209 | public struct org_apache_arrow_flatbuf_RecordBatch: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
210 |
211 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Message_generated.swift:292:57: error: cannot find type 'FlatBufferObject' in scope
290 | /// may be spread across multiple dictionary batches by using the isDelta
291 | /// flag
292 | public struct org_apache_arrow_flatbuf_DictionaryBatch: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
293 |
294 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Message_generated.swift:345:49: error: cannot find type 'FlatBufferObject' in scope
343 | }
344 |
345 | public struct org_apache_arrow_flatbuf_Message: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
346 |
347 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:24:13: warning: cannot use conformance of 'Int16' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
22 | import FlatBuffers
23 |
24 | public enum org_apache_arrow_flatbuf_MetadataVersion: Int16, Enum, Verifiable {
| |- warning: cannot use conformance of 'Int16' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
| |- note: The missing import of module 'Common' will be added implicitly
| `- note: in associated type 'Self.T' (inferred as 'Int16')
25 | public typealias T = Int16
26 | public static var byteSize: Int { return MemoryLayout<Int16>.size }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:67:13: warning: cannot use conformance of 'Int64' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
65 | /// to facilitate exchanging and comparing bitmaps for supported
66 | /// features.
67 | public enum org_apache_arrow_flatbuf_Feature: Int64, Enum, Verifiable {
| |- warning: cannot use conformance of 'Int64' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
| |- note: The missing import of module 'Common' will be added implicitly
| `- note: in associated type 'Self.T' (inferred as 'Int64')
68 | public typealias T = Int64
69 | public static var byteSize: Int { return MemoryLayout<Int64>.size }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:86:13: warning: cannot use conformance of 'Int16' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
84 |
85 |
86 | public enum org_apache_arrow_flatbuf_UnionMode: Int16, Enum, Verifiable {
| |- warning: cannot use conformance of 'Int16' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
| |- note: The missing import of module 'Common' will be added implicitly
| `- note: in associated type 'Self.T' (inferred as 'Int16')
87 | public typealias T = Int16
88 | public static var byteSize: Int { return MemoryLayout<Int16>.size }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:98:13: warning: cannot use conformance of 'Int16' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
96 |
97 |
98 | public enum org_apache_arrow_flatbuf_Precision: Int16, Enum, Verifiable {
| |- warning: cannot use conformance of 'Int16' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
| |- note: The missing import of module 'Common' will be added implicitly
| `- note: in associated type 'Self.T' (inferred as 'Int16')
99 | public typealias T = Int16
100 | public static var byteSize: Int { return MemoryLayout<Int16>.size }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:111:13: warning: cannot use conformance of 'Int16' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
109 |
110 |
111 | public enum org_apache_arrow_flatbuf_DateUnit: Int16, Enum, Verifiable {
| |- warning: cannot use conformance of 'Int16' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
| |- note: The missing import of module 'Common' will be added implicitly
| `- note: in associated type 'Self.T' (inferred as 'Int16')
112 | public typealias T = Int16
113 | public static var byteSize: Int { return MemoryLayout<Int16>.size }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:123:13: warning: cannot use conformance of 'Int16' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
121 |
122 |
123 | public enum org_apache_arrow_flatbuf_TimeUnit: Int16, Enum, Verifiable {
| |- warning: cannot use conformance of 'Int16' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
| |- note: The missing import of module 'Common' will be added implicitly
| `- note: in associated type 'Self.T' (inferred as 'Int16')
124 | public typealias T = Int16
125 | public static var byteSize: Int { return MemoryLayout<Int16>.size }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:137:13: warning: cannot use conformance of 'Int16' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
135 |
136 |
137 | public enum org_apache_arrow_flatbuf_IntervalUnit: Int16, Enum, Verifiable {
| |- warning: cannot use conformance of 'Int16' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
| |- note: The missing import of module 'Common' will be added implicitly
| `- note: in associated type 'Self.T' (inferred as 'Int16')
138 | public typealias T = Int16
139 | public static var byteSize: Int { return MemoryLayout<Int16>.size }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:153:13: warning: cannot use conformance of 'UInt8' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
151 | /// Top-level Type value, enabling extensible type-specific metadata. We can
152 | /// add new logical types to Type without breaking backwards compatibility
153 | public enum org_apache_arrow_flatbuf_Type_: UInt8, UnionEnum {
| |- warning: cannot use conformance of 'UInt8' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
| |- note: The missing import of module 'Common' will be added implicitly
| `- note: in associated type 'Self.T' (inferred as 'UInt8')
154 | public typealias T = UInt8
155 |
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:196:13: warning: cannot use conformance of 'Int16' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
194 | /// Dictionaries might be explicit maps between integers and values
195 | /// allowing for non-contiguous index values
196 | public enum org_apache_arrow_flatbuf_DictionaryKind: Int16, Enum, Verifiable {
| |- warning: cannot use conformance of 'Int16' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
| |- note: The missing import of module 'Common' will be added implicitly
| `- note: in associated type 'Self.T' (inferred as 'Int16')
197 | public typealias T = Int16
198 | public static var byteSize: Int { return MemoryLayout<Int16>.size }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:209:13: warning: cannot use conformance of 'Int16' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
207 | /// ----------------------------------------------------------------------
208 | /// Endianness of the platform producing the data
209 | public enum org_apache_arrow_flatbuf_Endianness: Int16, Enum, Verifiable {
| |- warning: cannot use conformance of 'Int16' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
| |- note: The missing import of module 'Common' will be added implicitly
| `- note: in associated type 'Self.T' (inferred as 'Int16')
210 | public typealias T = Int16
211 | public static var byteSize: Int { return MemoryLayout<Int16>.size }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:270:56: error: cannot find type 'FlatBufferObject' in scope
268 | /// ----------------------------------------------------------------------
269 | /// A Buffer represents a single contiguous memory segment
270 | public struct org_apache_arrow_flatbuf_Buffer_Mutable: FlatBufferObject {
| `- error: cannot find type 'FlatBufferObject' in scope
271 |
272 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:283:46: error: cannot find type 'FlatBufferObject' in scope
281 |
282 | /// These are stored in the flatbuffer in the Type union below
283 | public struct org_apache_arrow_flatbuf_Null: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
284 |
285 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:306:49: error: cannot find type 'FlatBufferObject' in scope
304 | /// (according to the physical memory layout). We used Struct_ here as
305 | /// Struct is a reserved word in Flatbuffers
306 | public struct org_apache_arrow_flatbuf_Struct_: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
307 |
308 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:326:46: error: cannot find type 'FlatBufferObject' in scope
324 | }
325 |
326 | public struct org_apache_arrow_flatbuf_List: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
327 |
328 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:348:51: error: cannot find type 'FlatBufferObject' in scope
346 | /// Same as List, but with 64-bit offsets, allowing to represent
347 | /// extremely large data values.
348 | public struct org_apache_arrow_flatbuf_LargeList: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
349 |
350 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:368:55: error: cannot find type 'FlatBufferObject' in scope
366 | }
367 |
368 | public struct org_apache_arrow_flatbuf_FixedSizeList: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
369 |
370 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:431:45: error: cannot find type 'FlatBufferObject' in scope
429 | /// for Map can make Map an alias for List. The "layout" attribute for the Map
430 | /// field must have the same contents as a List.
431 | public struct org_apache_arrow_flatbuf_Map: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
432 |
433 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:474:47: error: cannot find type 'FlatBufferObject' in scope
472 | /// optionally typeIds provides an indirection between the child offset and the type id
473 | /// for each child `typeIds[offset]` is the id used in the type vector
474 | public struct org_apache_arrow_flatbuf_Union: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
475 |
476 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:520:45: error: cannot find type 'FlatBufferObject' in scope
518 | }
519 |
520 | public struct org_apache_arrow_flatbuf_Int: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
521 |
522 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:564:55: error: cannot find type 'FlatBufferObject' in scope
562 | }
563 |
564 | public struct org_apache_arrow_flatbuf_FloatingPoint: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
565 |
566 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:602:46: error: cannot find type 'FlatBufferObject' in scope
600 |
601 | /// Unicode with UTF-8 encoding
602 | public struct org_apache_arrow_flatbuf_Utf8: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
603 |
604 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:623:48: error: cannot find type 'FlatBufferObject' in scope
621 |
622 | /// Opaque binary data
623 | public struct org_apache_arrow_flatbuf_Binary: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
624 |
625 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:645:51: error: cannot find type 'FlatBufferObject' in scope
643 | /// Same as Utf8, but with 64-bit offsets, allowing to represent
644 | /// extremely large data values.
645 | public struct org_apache_arrow_flatbuf_LargeUtf8: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
646 |
647 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:667:53: error: cannot find type 'FlatBufferObject' in scope
665 | /// Same as Binary, but with 64-bit offsets, allowing to represent
666 | /// extremely large data values.
667 | public struct org_apache_arrow_flatbuf_LargeBinary: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
668 |
669 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:687:57: error: cannot find type 'FlatBufferObject' in scope
685 | }
686 |
687 | public struct org_apache_arrow_flatbuf_FixedSizeBinary: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
688 |
689 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:725:46: error: cannot find type 'FlatBufferObject' in scope
723 | }
724 |
725 | public struct org_apache_arrow_flatbuf_Bool: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
726 |
727 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:750:55: error: cannot find type 'FlatBufferObject' in scope
748 | /// each corresponding index in the values child array ends.
749 | /// Like list/struct types, the value array can be of any type.
750 | public struct org_apache_arrow_flatbuf_RunEndEncoded: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
751 |
752 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:774:49: error: cannot find type 'FlatBufferObject' in scope
772 | /// are used. The representation uses the endianness indicated
773 | /// in the Schema.
774 | public struct org_apache_arrow_flatbuf_Decimal: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
775 |
776 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:833:46: error: cannot find type 'FlatBufferObject' in scope
831 | /// leap seconds), where the values are evenly divisible by 86400000
832 | /// * Days (32 bits) since the UNIX epoch
833 | public struct org_apache_arrow_flatbuf_Date: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
834 |
835 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:884:46: error: cannot find type 'FlatBufferObject' in scope
882 | /// measurements with leap seconds will need to be corrected when ingesting
883 | /// into Arrow (for example by replacing the value 86400 with 86399).
884 | public struct org_apache_arrow_flatbuf_Time: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
885 |
886 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:1032:51: error: cannot find type 'FlatBufferObject' in scope
1030 | /// was UTC; for example, the naive date-time "January 1st 1970, 00h00" would
1031 | /// be encoded as timestamp value 0.
1032 | public struct org_apache_arrow_flatbuf_Timestamp: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
1033 |
1034 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:1086:50: error: cannot find type 'FlatBufferObject' in scope
1084 | }
1085 |
1086 | public struct org_apache_arrow_flatbuf_Interval: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
1087 |
1088 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:1123:50: error: cannot find type 'FlatBufferObject' in scope
1121 | }
1122 |
1123 | public struct org_apache_arrow_flatbuf_Duration: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
1124 |
1125 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:1163:50: error: cannot find type 'FlatBufferObject' in scope
1161 | /// user defined key value pairs to add custom metadata to arrow
1162 | /// key namespacing is the responsibility of the user
1163 | public struct org_apache_arrow_flatbuf_KeyValue: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
1164 |
1165 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:1208:60: error: cannot find type 'FlatBufferObject' in scope
1206 | }
1207 |
1208 | public struct org_apache_arrow_flatbuf_DictionaryEncoding: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
1209 |
1210 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:1279:47: error: cannot find type 'FlatBufferObject' in scope
1277 | /// A field represents a named column in a record / row batch or child of a
1278 | /// nested type.
1279 | public struct org_apache_arrow_flatbuf_Field: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
1280 |
1281 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:1415:48: error: cannot find type 'FlatBufferObject' in scope
1413 | /// ----------------------------------------------------------------------
1414 | /// A Schema describes the columns in a row batch
1415 | public struct org_apache_arrow_flatbuf_Schema: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
1416 |
1417 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/SparseTensor_generated.swift:24:13: warning: cannot use conformance of 'Int16' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
22 | import FlatBuffers
23 |
24 | public enum org_apache_arrow_flatbuf_SparseMatrixCompressedAxis: Int16, Enum, Verifiable {
| |- warning: cannot use conformance of 'Int16' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
| |- note: The missing import of module 'Common' will be added implicitly
| `- note: in associated type 'Self.T' (inferred as 'Int16')
25 | public typealias T = Int16
26 | public static var byteSize: Int { return MemoryLayout<Int16>.size }
/host/spi-builder-workspace/Arrow/Sources/Arrow/SparseTensor_generated.swift:36:13: warning: cannot use conformance of 'UInt8' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
34 |
35 |
36 | public enum org_apache_arrow_flatbuf_SparseTensorIndex: UInt8, UnionEnum {
| |- warning: cannot use conformance of 'UInt8' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
| |- note: The missing import of module 'Common' will be added implicitly
| `- note: in associated type 'Self.T' (inferred as 'UInt8')
37 | public typealias T = UInt8
38 |
/host/spi-builder-workspace/Arrow/Sources/Arrow/SparseTensor_generated.swift:87:62: error: cannot find type 'FlatBufferObject' in scope
85 | /// (row-major order), and it does not have duplicated entries. Otherwise,
86 | /// the indices may not be sorted, or may have duplicated entries.
87 | public struct org_apache_arrow_flatbuf_SparseTensorIndexCOO: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
88 |
89 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/SparseTensor_generated.swift:157:62: error: cannot find type 'FlatBufferObject' in scope
155 |
156 | /// Compressed Sparse format, that is matrix-specific.
157 | public struct org_apache_arrow_flatbuf_SparseMatrixIndexCSX: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
158 |
159 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/SparseTensor_generated.swift:256:62: error: cannot find type 'FlatBufferObject' in scope
254 |
255 | /// Compressed Sparse Fiber (CSF) sparse tensor index.
256 | public struct org_apache_arrow_flatbuf_SparseTensorIndexCSF: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
257 |
258 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/SparseTensor_generated.swift:395:54: error: cannot find type 'FlatBufferObject' in scope
393 | }
394 |
395 | public struct org_apache_arrow_flatbuf_SparseTensor: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
396 |
397 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Tensor_generated.swift:27:51: error: cannot find type 'FlatBufferObject' in scope
25 | /// Data structures for dense tensors
26 | /// Shape data for a single axis in a tensor
27 | public struct org_apache_arrow_flatbuf_TensorDim: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
28 |
29 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Tensor_generated.swift:73:48: error: cannot find type 'FlatBufferObject' in scope
71 | }
72 |
73 | public struct org_apache_arrow_flatbuf_Tensor: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
74 |
75 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
[721/738] Compiling Arrow ArrowCExporter.swift
/host/spi-builder-workspace/Arrow/Sources/Arrow/ArrowCExporter.swift:48:53: warning: 'utf8String' is deprecated: On platforms without Objective-C autorelease pools, use withCString instead [#DeprecatedDeclaration]
46 | self.name = name
47 | self.arrowTypeName = try arrowType.cDataFormatId
48 | self.nameCstr = (self.name as NSString).utf8String!
| `- warning: 'utf8String' is deprecated: On platforms without Objective-C autorelease pools, use withCString instead [#DeprecatedDeclaration]
49 | self.arrowTypeNameCstr = (self.arrowTypeName as NSString).utf8String!
50 | super.init()
/host/spi-builder-workspace/Arrow/Sources/Arrow/ArrowCExporter.swift:49:71: warning: 'utf8String' is deprecated: On platforms without Objective-C autorelease pools, use withCString instead [#DeprecatedDeclaration]
47 | self.arrowTypeName = try arrowType.cDataFormatId
48 | self.nameCstr = (self.name as NSString).utf8String!
49 | self.arrowTypeNameCstr = (self.arrowTypeName as NSString).utf8String!
| `- warning: 'utf8String' is deprecated: On platforms without Objective-C autorelease pools, use withCString instead [#DeprecatedDeclaration]
50 | super.init()
51 | }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[722/738] Compiling Arrow ArrowCImporter.swift
/host/spi-builder-workspace/Arrow/Sources/Arrow/ArrowCExporter.swift:48:53: warning: 'utf8String' is deprecated: On platforms without Objective-C autorelease pools, use withCString instead [#DeprecatedDeclaration]
46 | self.name = name
47 | self.arrowTypeName = try arrowType.cDataFormatId
48 | self.nameCstr = (self.name as NSString).utf8String!
| `- warning: 'utf8String' is deprecated: On platforms without Objective-C autorelease pools, use withCString instead [#DeprecatedDeclaration]
49 | self.arrowTypeNameCstr = (self.arrowTypeName as NSString).utf8String!
50 | super.init()
/host/spi-builder-workspace/Arrow/Sources/Arrow/ArrowCExporter.swift:49:71: warning: 'utf8String' is deprecated: On platforms without Objective-C autorelease pools, use withCString instead [#DeprecatedDeclaration]
47 | self.arrowTypeName = try arrowType.cDataFormatId
48 | self.nameCstr = (self.name as NSString).utf8String!
49 | self.arrowTypeNameCstr = (self.arrowTypeName as NSString).utf8String!
| `- warning: 'utf8String' is deprecated: On platforms without Objective-C autorelease pools, use withCString instead [#DeprecatedDeclaration]
50 | super.init()
51 | }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[723/738] Compiling Arrow ArrowData.swift
/host/spi-builder-workspace/Arrow/Sources/Arrow/ArrowCExporter.swift:48:53: warning: 'utf8String' is deprecated: On platforms without Objective-C autorelease pools, use withCString instead [#DeprecatedDeclaration]
46 | self.name = name
47 | self.arrowTypeName = try arrowType.cDataFormatId
48 | self.nameCstr = (self.name as NSString).utf8String!
| `- warning: 'utf8String' is deprecated: On platforms without Objective-C autorelease pools, use withCString instead [#DeprecatedDeclaration]
49 | self.arrowTypeNameCstr = (self.arrowTypeName as NSString).utf8String!
50 | super.init()
/host/spi-builder-workspace/Arrow/Sources/Arrow/ArrowCExporter.swift:49:71: warning: 'utf8String' is deprecated: On platforms without Objective-C autorelease pools, use withCString instead [#DeprecatedDeclaration]
47 | self.arrowTypeName = try arrowType.cDataFormatId
48 | self.nameCstr = (self.name as NSString).utf8String!
49 | self.arrowTypeNameCstr = (self.arrowTypeName as NSString).utf8String!
| `- warning: 'utf8String' is deprecated: On platforms without Objective-C autorelease pools, use withCString instead [#DeprecatedDeclaration]
50 | super.init()
51 | }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[724/738] Compiling Arrow ArrowDecoder.swift
/host/spi-builder-workspace/Arrow/Sources/Arrow/Message_generated.swift:209:53: error: cannot find type 'FlatBufferObject' in scope
207 | /// batch. Some systems call this a "row batch" internally and others a "record
208 | /// batch".
209 | public struct org_apache_arrow_flatbuf_RecordBatch: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
210 |
211 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:1415:48: error: cannot find type 'FlatBufferObject' in scope
1413 | /// ----------------------------------------------------------------------
1414 | /// A Schema describes the columns in a row batch
1415 | public struct org_apache_arrow_flatbuf_Schema: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
1416 |
1417 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/ArrowReader.swift:246:47: error: extra argument 'allowReadingUnalignedBuffers' in call
244 | let dataBuffer = ByteBuffer(
245 | data: streamData,
246 | allowReadingUnalignedBuffers: true)
| `- error: extra argument 'allowReadingUnalignedBuffers' in call
247 | let message = org_apache_arrow_flatbuf_Message.getRootAsMessage(bb: dataBuffer)
248 | switch message.headerType {
/host/spi-builder-workspace/Arrow/Sources/Arrow/ArrowReader.swift:301:43: error: extra argument 'allowReadingUnalignedBuffers' in call
299 | let footerBuffer = ByteBuffer(
300 | data: footerData,
301 | allowReadingUnalignedBuffers: useUnalignedBuffers)
| `- error: extra argument 'allowReadingUnalignedBuffers' in call
302 | let footer = org_apache_arrow_flatbuf_Footer.getRootAsFooter(bb: footerBuffer)
303 | let schemaResult = loadSchema(footer.schema!)
/host/spi-builder-workspace/Arrow/Sources/Arrow/ArrowReader.swift:332:47: error: extra argument 'allowReadingUnalignedBuffers' in call
330 | let mbb = ByteBuffer(
331 | data: recordBatchData,
332 | allowReadingUnalignedBuffers: useUnalignedBuffers)
| `- error: extra argument 'allowReadingUnalignedBuffers' in call
333 | let message = org_apache_arrow_flatbuf_Message.getRootAsMessage(bb: mbb)
334 | switch message.headerType {
/host/spi-builder-workspace/Arrow/Sources/Arrow/ArrowReader.swift:385:43: error: extra argument 'allowReadingUnalignedBuffers' in call
383 | let mbb = ByteBuffer(
384 | data: dataHeader,
385 | allowReadingUnalignedBuffers: useUnalignedBuffers)
| `- error: extra argument 'allowReadingUnalignedBuffers' in call
386 | let message = org_apache_arrow_flatbuf_Message.getRootAsMessage(bb: mbb)
387 | switch message.headerType {
[725/738] Compiling Arrow ArrowEncoder.swift
/host/spi-builder-workspace/Arrow/Sources/Arrow/Message_generated.swift:209:53: error: cannot find type 'FlatBufferObject' in scope
207 | /// batch. Some systems call this a "row batch" internally and others a "record
208 | /// batch".
209 | public struct org_apache_arrow_flatbuf_RecordBatch: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
210 |
211 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:1415:48: error: cannot find type 'FlatBufferObject' in scope
1413 | /// ----------------------------------------------------------------------
1414 | /// A Schema describes the columns in a row batch
1415 | public struct org_apache_arrow_flatbuf_Schema: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
1416 |
1417 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/ArrowReader.swift:246:47: error: extra argument 'allowReadingUnalignedBuffers' in call
244 | let dataBuffer = ByteBuffer(
245 | data: streamData,
246 | allowReadingUnalignedBuffers: true)
| `- error: extra argument 'allowReadingUnalignedBuffers' in call
247 | let message = org_apache_arrow_flatbuf_Message.getRootAsMessage(bb: dataBuffer)
248 | switch message.headerType {
/host/spi-builder-workspace/Arrow/Sources/Arrow/ArrowReader.swift:301:43: error: extra argument 'allowReadingUnalignedBuffers' in call
299 | let footerBuffer = ByteBuffer(
300 | data: footerData,
301 | allowReadingUnalignedBuffers: useUnalignedBuffers)
| `- error: extra argument 'allowReadingUnalignedBuffers' in call
302 | let footer = org_apache_arrow_flatbuf_Footer.getRootAsFooter(bb: footerBuffer)
303 | let schemaResult = loadSchema(footer.schema!)
/host/spi-builder-workspace/Arrow/Sources/Arrow/ArrowReader.swift:332:47: error: extra argument 'allowReadingUnalignedBuffers' in call
330 | let mbb = ByteBuffer(
331 | data: recordBatchData,
332 | allowReadingUnalignedBuffers: useUnalignedBuffers)
| `- error: extra argument 'allowReadingUnalignedBuffers' in call
333 | let message = org_apache_arrow_flatbuf_Message.getRootAsMessage(bb: mbb)
334 | switch message.headerType {
/host/spi-builder-workspace/Arrow/Sources/Arrow/ArrowReader.swift:385:43: error: extra argument 'allowReadingUnalignedBuffers' in call
383 | let mbb = ByteBuffer(
384 | data: dataHeader,
385 | allowReadingUnalignedBuffers: useUnalignedBuffers)
| `- error: extra argument 'allowReadingUnalignedBuffers' in call
386 | let message = org_apache_arrow_flatbuf_Message.getRootAsMessage(bb: mbb)
387 | switch message.headerType {
[726/738] Compiling Arrow ArrowReader.swift
/host/spi-builder-workspace/Arrow/Sources/Arrow/Message_generated.swift:209:53: error: cannot find type 'FlatBufferObject' in scope
207 | /// batch. Some systems call this a "row batch" internally and others a "record
208 | /// batch".
209 | public struct org_apache_arrow_flatbuf_RecordBatch: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
210 |
211 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:1415:48: error: cannot find type 'FlatBufferObject' in scope
1413 | /// ----------------------------------------------------------------------
1414 | /// A Schema describes the columns in a row batch
1415 | public struct org_apache_arrow_flatbuf_Schema: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
1416 |
1417 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/ArrowReader.swift:246:47: error: extra argument 'allowReadingUnalignedBuffers' in call
244 | let dataBuffer = ByteBuffer(
245 | data: streamData,
246 | allowReadingUnalignedBuffers: true)
| `- error: extra argument 'allowReadingUnalignedBuffers' in call
247 | let message = org_apache_arrow_flatbuf_Message.getRootAsMessage(bb: dataBuffer)
248 | switch message.headerType {
/host/spi-builder-workspace/Arrow/Sources/Arrow/ArrowReader.swift:301:43: error: extra argument 'allowReadingUnalignedBuffers' in call
299 | let footerBuffer = ByteBuffer(
300 | data: footerData,
301 | allowReadingUnalignedBuffers: useUnalignedBuffers)
| `- error: extra argument 'allowReadingUnalignedBuffers' in call
302 | let footer = org_apache_arrow_flatbuf_Footer.getRootAsFooter(bb: footerBuffer)
303 | let schemaResult = loadSchema(footer.schema!)
/host/spi-builder-workspace/Arrow/Sources/Arrow/ArrowReader.swift:332:47: error: extra argument 'allowReadingUnalignedBuffers' in call
330 | let mbb = ByteBuffer(
331 | data: recordBatchData,
332 | allowReadingUnalignedBuffers: useUnalignedBuffers)
| `- error: extra argument 'allowReadingUnalignedBuffers' in call
333 | let message = org_apache_arrow_flatbuf_Message.getRootAsMessage(bb: mbb)
334 | switch message.headerType {
/host/spi-builder-workspace/Arrow/Sources/Arrow/ArrowReader.swift:385:43: error: extra argument 'allowReadingUnalignedBuffers' in call
383 | let mbb = ByteBuffer(
384 | data: dataHeader,
385 | allowReadingUnalignedBuffers: useUnalignedBuffers)
| `- error: extra argument 'allowReadingUnalignedBuffers' in call
386 | let message = org_apache_arrow_flatbuf_Message.getRootAsMessage(bb: mbb)
387 | switch message.headerType {
[727/738] Compiling Arrow ArrowType.swift
[728/738] Compiling Arrow ArrowWriter.swift
[729/738] Compiling Arrow ArrowWriterHelper.swift
[730/738] Compiling Arrow Schema_generated.swift
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:24:13: warning: cannot use conformance of 'Int16' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
22 | import FlatBuffers
23 |
24 | public enum org_apache_arrow_flatbuf_MetadataVersion: Int16, Enum, Verifiable {
| |- warning: cannot use conformance of 'Int16' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
| |- note: The missing import of module 'Common' will be added implicitly
| `- note: in associated type 'Self.T' (inferred as 'Int16')
25 | public typealias T = Int16
26 | public static var byteSize: Int { return MemoryLayout<Int16>.size }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:67:13: warning: cannot use conformance of 'Int64' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
65 | /// to facilitate exchanging and comparing bitmaps for supported
66 | /// features.
67 | public enum org_apache_arrow_flatbuf_Feature: Int64, Enum, Verifiable {
| |- warning: cannot use conformance of 'Int64' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
| |- note: The missing import of module 'Common' will be added implicitly
| `- note: in associated type 'Self.T' (inferred as 'Int64')
68 | public typealias T = Int64
69 | public static var byteSize: Int { return MemoryLayout<Int64>.size }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:86:13: warning: cannot use conformance of 'Int16' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
84 |
85 |
86 | public enum org_apache_arrow_flatbuf_UnionMode: Int16, Enum, Verifiable {
| |- warning: cannot use conformance of 'Int16' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
| |- note: The missing import of module 'Common' will be added implicitly
| `- note: in associated type 'Self.T' (inferred as 'Int16')
87 | public typealias T = Int16
88 | public static var byteSize: Int { return MemoryLayout<Int16>.size }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:98:13: warning: cannot use conformance of 'Int16' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
96 |
97 |
98 | public enum org_apache_arrow_flatbuf_Precision: Int16, Enum, Verifiable {
| |- warning: cannot use conformance of 'Int16' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
| |- note: The missing import of module 'Common' will be added implicitly
| `- note: in associated type 'Self.T' (inferred as 'Int16')
99 | public typealias T = Int16
100 | public static var byteSize: Int { return MemoryLayout<Int16>.size }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:111:13: warning: cannot use conformance of 'Int16' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
109 |
110 |
111 | public enum org_apache_arrow_flatbuf_DateUnit: Int16, Enum, Verifiable {
| |- warning: cannot use conformance of 'Int16' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
| |- note: The missing import of module 'Common' will be added implicitly
| `- note: in associated type 'Self.T' (inferred as 'Int16')
112 | public typealias T = Int16
113 | public static var byteSize: Int { return MemoryLayout<Int16>.size }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:123:13: warning: cannot use conformance of 'Int16' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
121 |
122 |
123 | public enum org_apache_arrow_flatbuf_TimeUnit: Int16, Enum, Verifiable {
| |- warning: cannot use conformance of 'Int16' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
| |- note: The missing import of module 'Common' will be added implicitly
| `- note: in associated type 'Self.T' (inferred as 'Int16')
124 | public typealias T = Int16
125 | public static var byteSize: Int { return MemoryLayout<Int16>.size }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:137:13: warning: cannot use conformance of 'Int16' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
135 |
136 |
137 | public enum org_apache_arrow_flatbuf_IntervalUnit: Int16, Enum, Verifiable {
| |- warning: cannot use conformance of 'Int16' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
| |- note: The missing import of module 'Common' will be added implicitly
| `- note: in associated type 'Self.T' (inferred as 'Int16')
138 | public typealias T = Int16
139 | public static var byteSize: Int { return MemoryLayout<Int16>.size }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:153:13: warning: cannot use conformance of 'UInt8' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
151 | /// Top-level Type value, enabling extensible type-specific metadata. We can
152 | /// add new logical types to Type without breaking backwards compatibility
153 | public enum org_apache_arrow_flatbuf_Type_: UInt8, UnionEnum {
| |- warning: cannot use conformance of 'UInt8' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
| |- note: The missing import of module 'Common' will be added implicitly
| `- note: in associated type 'Self.T' (inferred as 'UInt8')
154 | public typealias T = UInt8
155 |
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:196:13: warning: cannot use conformance of 'Int16' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
194 | /// Dictionaries might be explicit maps between integers and values
195 | /// allowing for non-contiguous index values
196 | public enum org_apache_arrow_flatbuf_DictionaryKind: Int16, Enum, Verifiable {
| |- warning: cannot use conformance of 'Int16' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
| |- note: The missing import of module 'Common' will be added implicitly
| `- note: in associated type 'Self.T' (inferred as 'Int16')
197 | public typealias T = Int16
198 | public static var byteSize: Int { return MemoryLayout<Int16>.size }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:209:13: warning: cannot use conformance of 'Int16' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
207 | /// ----------------------------------------------------------------------
208 | /// Endianness of the platform producing the data
209 | public enum org_apache_arrow_flatbuf_Endianness: Int16, Enum, Verifiable {
| |- warning: cannot use conformance of 'Int16' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
| |- note: The missing import of module 'Common' will be added implicitly
| `- note: in associated type 'Self.T' (inferred as 'Int16')
210 | public typealias T = Int16
211 | public static var byteSize: Int { return MemoryLayout<Int16>.size }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:270:56: error: cannot find type 'FlatBufferObject' in scope
268 | /// ----------------------------------------------------------------------
269 | /// A Buffer represents a single contiguous memory segment
270 | public struct org_apache_arrow_flatbuf_Buffer_Mutable: FlatBufferObject {
| `- error: cannot find type 'FlatBufferObject' in scope
271 |
272 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:283:46: error: cannot find type 'FlatBufferObject' in scope
281 |
282 | /// These are stored in the flatbuffer in the Type union below
283 | public struct org_apache_arrow_flatbuf_Null: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
284 |
285 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:306:49: error: cannot find type 'FlatBufferObject' in scope
304 | /// (according to the physical memory layout). We used Struct_ here as
305 | /// Struct is a reserved word in Flatbuffers
306 | public struct org_apache_arrow_flatbuf_Struct_: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
307 |
308 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:326:46: error: cannot find type 'FlatBufferObject' in scope
324 | }
325 |
326 | public struct org_apache_arrow_flatbuf_List: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
327 |
328 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:348:51: error: cannot find type 'FlatBufferObject' in scope
346 | /// Same as List, but with 64-bit offsets, allowing to represent
347 | /// extremely large data values.
348 | public struct org_apache_arrow_flatbuf_LargeList: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
349 |
350 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:368:55: error: cannot find type 'FlatBufferObject' in scope
366 | }
367 |
368 | public struct org_apache_arrow_flatbuf_FixedSizeList: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
369 |
370 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:431:45: error: cannot find type 'FlatBufferObject' in scope
429 | /// for Map can make Map an alias for List. The "layout" attribute for the Map
430 | /// field must have the same contents as a List.
431 | public struct org_apache_arrow_flatbuf_Map: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
432 |
433 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:474:47: error: cannot find type 'FlatBufferObject' in scope
472 | /// optionally typeIds provides an indirection between the child offset and the type id
473 | /// for each child `typeIds[offset]` is the id used in the type vector
474 | public struct org_apache_arrow_flatbuf_Union: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
475 |
476 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:520:45: error: cannot find type 'FlatBufferObject' in scope
518 | }
519 |
520 | public struct org_apache_arrow_flatbuf_Int: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
521 |
522 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:564:55: error: cannot find type 'FlatBufferObject' in scope
562 | }
563 |
564 | public struct org_apache_arrow_flatbuf_FloatingPoint: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
565 |
566 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:602:46: error: cannot find type 'FlatBufferObject' in scope
600 |
601 | /// Unicode with UTF-8 encoding
602 | public struct org_apache_arrow_flatbuf_Utf8: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
603 |
604 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:623:48: error: cannot find type 'FlatBufferObject' in scope
621 |
622 | /// Opaque binary data
623 | public struct org_apache_arrow_flatbuf_Binary: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
624 |
625 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:645:51: error: cannot find type 'FlatBufferObject' in scope
643 | /// Same as Utf8, but with 64-bit offsets, allowing to represent
644 | /// extremely large data values.
645 | public struct org_apache_arrow_flatbuf_LargeUtf8: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
646 |
647 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:667:53: error: cannot find type 'FlatBufferObject' in scope
665 | /// Same as Binary, but with 64-bit offsets, allowing to represent
666 | /// extremely large data values.
667 | public struct org_apache_arrow_flatbuf_LargeBinary: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
668 |
669 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:687:57: error: cannot find type 'FlatBufferObject' in scope
685 | }
686 |
687 | public struct org_apache_arrow_flatbuf_FixedSizeBinary: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
688 |
689 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:725:46: error: cannot find type 'FlatBufferObject' in scope
723 | }
724 |
725 | public struct org_apache_arrow_flatbuf_Bool: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
726 |
727 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:750:55: error: cannot find type 'FlatBufferObject' in scope
748 | /// each corresponding index in the values child array ends.
749 | /// Like list/struct types, the value array can be of any type.
750 | public struct org_apache_arrow_flatbuf_RunEndEncoded: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
751 |
752 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:774:49: error: cannot find type 'FlatBufferObject' in scope
772 | /// are used. The representation uses the endianness indicated
773 | /// in the Schema.
774 | public struct org_apache_arrow_flatbuf_Decimal: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
775 |
776 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:833:46: error: cannot find type 'FlatBufferObject' in scope
831 | /// leap seconds), where the values are evenly divisible by 86400000
832 | /// * Days (32 bits) since the UNIX epoch
833 | public struct org_apache_arrow_flatbuf_Date: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
834 |
835 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:884:46: error: cannot find type 'FlatBufferObject' in scope
882 | /// measurements with leap seconds will need to be corrected when ingesting
883 | /// into Arrow (for example by replacing the value 86400 with 86399).
884 | public struct org_apache_arrow_flatbuf_Time: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
885 |
886 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:1032:51: error: cannot find type 'FlatBufferObject' in scope
1030 | /// was UTC; for example, the naive date-time "January 1st 1970, 00h00" would
1031 | /// be encoded as timestamp value 0.
1032 | public struct org_apache_arrow_flatbuf_Timestamp: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
1033 |
1034 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:1086:50: error: cannot find type 'FlatBufferObject' in scope
1084 | }
1085 |
1086 | public struct org_apache_arrow_flatbuf_Interval: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
1087 |
1088 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:1123:50: error: cannot find type 'FlatBufferObject' in scope
1121 | }
1122 |
1123 | public struct org_apache_arrow_flatbuf_Duration: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
1124 |
1125 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:1163:50: error: cannot find type 'FlatBufferObject' in scope
1161 | /// user defined key value pairs to add custom metadata to arrow
1162 | /// key namespacing is the responsibility of the user
1163 | public struct org_apache_arrow_flatbuf_KeyValue: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
1164 |
1165 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:1208:60: error: cannot find type 'FlatBufferObject' in scope
1206 | }
1207 |
1208 | public struct org_apache_arrow_flatbuf_DictionaryEncoding: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
1209 |
1210 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:1279:47: error: cannot find type 'FlatBufferObject' in scope
1277 | /// A field represents a named column in a record / row batch or child of a
1278 | /// nested type.
1279 | public struct org_apache_arrow_flatbuf_Field: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
1280 |
1281 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:1415:48: error: cannot find type 'FlatBufferObject' in scope
1413 | /// ----------------------------------------------------------------------
1414 | /// A Schema describes the columns in a row batch
1415 | public struct org_apache_arrow_flatbuf_Schema: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
1416 |
1417 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:495:127: error: value of type 'Table' has no member 'directRead'
493 | public var hasTypeIds: Bool { let o = _accessor.offset(VTOFFSET.typeIds.v); return o == 0 ? false : true }
494 | public var typeIdsCount: Int32 { let o = _accessor.offset(VTOFFSET.typeIds.v); return o == 0 ? 0 : _accessor.vector(count: o) }
495 | public func typeIds(at index: Int32) -> Int32 { let o = _accessor.offset(VTOFFSET.typeIds.v); return o == 0 ? 0 : _accessor.directRead(of: Int32.self, offset: _accessor.vector(at: o) + index * 4) }
| `- error: value of type 'Table' has no member 'directRead'
496 | public var typeIds: [Int32] { return _accessor.getVector(at: VTOFFSET.typeIds.v) ?? [] }
497 | public static func startUnion(_ fbb: inout FlatBufferBuilder) -> UOffset { fbb.startTable(with: 2) }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:1448:238: error: value of type 'Table' has no member 'directRead'
1446 | public var hasFeatures: Bool { let o = _accessor.offset(VTOFFSET.features.v); return o == 0 ? false : true }
1447 | public var featuresCount: Int32 { let o = _accessor.offset(VTOFFSET.features.v); return o == 0 ? 0 : _accessor.vector(count: o) }
1448 | public func features(at index: Int32) -> org_apache_arrow_flatbuf_Feature? { let o = _accessor.offset(VTOFFSET.features.v); return o == 0 ? org_apache_arrow_flatbuf_Feature.unused : org_apache_arrow_flatbuf_Feature(rawValue: _accessor.directRead(of: Int64.self, offset: _accessor.vector(at: o) + index * 8)) }
| `- error: value of type 'Table' has no member 'directRead'
1449 | public static func startSchema(_ fbb: inout FlatBufferBuilder) -> UOffset { fbb.startTable(with: 4) }
1450 | public static func add(endianness: org_apache_arrow_flatbuf_Endianness, _ fbb: inout FlatBufferBuilder) { fbb.add(element: endianness.rawValue, def: 0, at: VTOFFSET.endianness.p) }
/host/spi-builder-workspace/Arrow/Sources/Arrow/SparseTensor_generated.swift:24:13: warning: cannot use conformance of 'Int16' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
22 | import FlatBuffers
23 |
24 | public enum org_apache_arrow_flatbuf_SparseMatrixCompressedAxis: Int16, Enum, Verifiable {
| |- warning: cannot use conformance of 'Int16' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
| |- note: The missing import of module 'Common' will be added implicitly
| `- note: in associated type 'Self.T' (inferred as 'Int16')
25 | public typealias T = Int16
26 | public static var byteSize: Int { return MemoryLayout<Int16>.size }
/host/spi-builder-workspace/Arrow/Sources/Arrow/SparseTensor_generated.swift:36:13: warning: cannot use conformance of 'UInt8' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
34 |
35 |
36 | public enum org_apache_arrow_flatbuf_SparseTensorIndex: UInt8, UnionEnum {
| |- warning: cannot use conformance of 'UInt8' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
| |- note: The missing import of module 'Common' will be added implicitly
| `- note: in associated type 'Self.T' (inferred as 'UInt8')
37 | public typealias T = UInt8
38 |
/host/spi-builder-workspace/Arrow/Sources/Arrow/SparseTensor_generated.swift:87:62: error: cannot find type 'FlatBufferObject' in scope
85 | /// (row-major order), and it does not have duplicated entries. Otherwise,
86 | /// the indices may not be sorted, or may have duplicated entries.
87 | public struct org_apache_arrow_flatbuf_SparseTensorIndexCOO: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
88 |
89 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/SparseTensor_generated.swift:157:62: error: cannot find type 'FlatBufferObject' in scope
155 |
156 | /// Compressed Sparse format, that is matrix-specific.
157 | public struct org_apache_arrow_flatbuf_SparseMatrixIndexCSX: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
158 |
159 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/SparseTensor_generated.swift:256:62: error: cannot find type 'FlatBufferObject' in scope
254 |
255 | /// Compressed Sparse Fiber (CSF) sparse tensor index.
256 | public struct org_apache_arrow_flatbuf_SparseTensorIndexCSF: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
257 |
258 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/SparseTensor_generated.swift:395:54: error: cannot find type 'FlatBufferObject' in scope
393 | }
394 |
395 | public struct org_apache_arrow_flatbuf_SparseTensor: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
396 |
397 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/SparseTensor_generated.swift:113:141: error: value of type 'Table' has no member 'directRead'
111 | public var hasIndicesStrides: Bool { let o = _accessor.offset(VTOFFSET.indicesStrides.v); return o == 0 ? false : true }
112 | public var indicesStridesCount: Int32 { let o = _accessor.offset(VTOFFSET.indicesStrides.v); return o == 0 ? 0 : _accessor.vector(count: o) }
113 | public func indicesStrides(at index: Int32) -> Int64 { let o = _accessor.offset(VTOFFSET.indicesStrides.v); return o == 0 ? 0 : _accessor.directRead(of: Int64.self, offset: _accessor.vector(at: o) + index * 8) }
| `- error: value of type 'Table' has no member 'directRead'
114 | public var indicesStrides: [Int64] { return _accessor.getVector(at: VTOFFSET.indicesStrides.v) ?? [] }
115 | /// The location and size of the indices matrix's data
/host/spi-builder-workspace/Arrow/Sources/Arrow/SparseTensor_generated.swift:325:168: error: value of type 'Table' has no member 'directRead'
323 | public var hasIndptrBuffers: Bool { let o = _accessor.offset(VTOFFSET.indptrBuffers.v); return o == 0 ? false : true }
324 | public var indptrBuffersCount: Int32 { let o = _accessor.offset(VTOFFSET.indptrBuffers.v); return o == 0 ? 0 : _accessor.vector(count: o) }
325 | public func indptrBuffers(at index: Int32) -> org_apache_arrow_flatbuf_Buffer? { let o = _accessor.offset(VTOFFSET.indptrBuffers.v); return o == 0 ? nil : _accessor.directRead(of: org_apache_arrow_flatbuf_Buffer.self, offset: _accessor.vector(at: o) + index * 16) }
| `- error: value of type 'Table' has no member 'directRead'
326 | public func mutableIndptrBuffers(at index: Int32) -> org_apache_arrow_flatbuf_Buffer_Mutable? { let o = _accessor.offset(VTOFFSET.indptrBuffers.v); return o == 0 ? nil : org_apache_arrow_flatbuf_Buffer_Mutable(_accessor.bb, o: _accessor.vector(at: o) + index * 16) }
327 | /// The type of values in indicesBuffers
/host/spi-builder-workspace/Arrow/Sources/Arrow/SparseTensor_generated.swift:342:170: error: value of type 'Table' has no member 'directRead'
340 | public var hasIndicesBuffers: Bool { let o = _accessor.offset(VTOFFSET.indicesBuffers.v); return o == 0 ? false : true }
341 | public var indicesBuffersCount: Int32 { let o = _accessor.offset(VTOFFSET.indicesBuffers.v); return o == 0 ? 0 : _accessor.vector(count: o) }
342 | public func indicesBuffers(at index: Int32) -> org_apache_arrow_flatbuf_Buffer? { let o = _accessor.offset(VTOFFSET.indicesBuffers.v); return o == 0 ? nil : _accessor.directRead(of: org_apache_arrow_flatbuf_Buffer.self, offset: _accessor.vector(at: o) + index * 16) }
| `- error: value of type 'Table' has no member 'directRead'
343 | public func mutableIndicesBuffers(at index: Int32) -> org_apache_arrow_flatbuf_Buffer_Mutable? { let o = _accessor.offset(VTOFFSET.indicesBuffers.v); return o == 0 ? nil : org_apache_arrow_flatbuf_Buffer_Mutable(_accessor.bb, o: _accessor.vector(at: o) + index * 16) }
344 | /// axisOrder stores the sequence in which dimensions were traversed to
/host/spi-builder-workspace/Arrow/Sources/Arrow/SparseTensor_generated.swift:352:131: error: value of type 'Table' has no member 'directRead'
350 | public var hasAxisOrder: Bool { let o = _accessor.offset(VTOFFSET.axisOrder.v); return o == 0 ? false : true }
351 | public var axisOrderCount: Int32 { let o = _accessor.offset(VTOFFSET.axisOrder.v); return o == 0 ? 0 : _accessor.vector(count: o) }
352 | public func axisOrder(at index: Int32) -> Int32 { let o = _accessor.offset(VTOFFSET.axisOrder.v); return o == 0 ? 0 : _accessor.directRead(of: Int32.self, offset: _accessor.vector(at: o) + index * 4) }
| `- error: value of type 'Table' has no member 'directRead'
353 | public var axisOrder: [Int32] { return _accessor.getVector(at: VTOFFSET.axisOrder.v) ?? [] }
354 | public static func startSparseTensorIndexCSF(_ fbb: inout FlatBufferBuilder) -> UOffset { fbb.startTable(with: 5) }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Tensor_generated.swift:27:51: error: cannot find type 'FlatBufferObject' in scope
25 | /// Data structures for dense tensors
26 | /// Shape data for a single axis in a tensor
27 | public struct org_apache_arrow_flatbuf_TensorDim: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
28 |
29 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Tensor_generated.swift:73:48: error: cannot find type 'FlatBufferObject' in scope
71 | }
72 |
73 | public struct org_apache_arrow_flatbuf_Tensor: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
74 |
75 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Tensor_generated.swift:106:127: error: value of type 'Table' has no member 'directRead'
104 | public var hasStrides: Bool { let o = _accessor.offset(VTOFFSET.strides.v); return o == 0 ? false : true }
105 | public var stridesCount: Int32 { let o = _accessor.offset(VTOFFSET.strides.v); return o == 0 ? 0 : _accessor.vector(count: o) }
106 | public func strides(at index: Int32) -> Int64 { let o = _accessor.offset(VTOFFSET.strides.v); return o == 0 ? 0 : _accessor.directRead(of: Int64.self, offset: _accessor.vector(at: o) + index * 8) }
| `- error: value of type 'Table' has no member 'directRead'
107 | public var strides: [Int64] { return _accessor.getVector(at: VTOFFSET.strides.v) ?? [] }
108 | /// The location and size of the tensor's data
[731/738] Compiling Arrow SparseTensor_generated.swift
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:24:13: warning: cannot use conformance of 'Int16' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
22 | import FlatBuffers
23 |
24 | public enum org_apache_arrow_flatbuf_MetadataVersion: Int16, Enum, Verifiable {
| |- warning: cannot use conformance of 'Int16' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
| |- note: The missing import of module 'Common' will be added implicitly
| `- note: in associated type 'Self.T' (inferred as 'Int16')
25 | public typealias T = Int16
26 | public static var byteSize: Int { return MemoryLayout<Int16>.size }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:67:13: warning: cannot use conformance of 'Int64' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
65 | /// to facilitate exchanging and comparing bitmaps for supported
66 | /// features.
67 | public enum org_apache_arrow_flatbuf_Feature: Int64, Enum, Verifiable {
| |- warning: cannot use conformance of 'Int64' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
| |- note: The missing import of module 'Common' will be added implicitly
| `- note: in associated type 'Self.T' (inferred as 'Int64')
68 | public typealias T = Int64
69 | public static var byteSize: Int { return MemoryLayout<Int64>.size }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:86:13: warning: cannot use conformance of 'Int16' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
84 |
85 |
86 | public enum org_apache_arrow_flatbuf_UnionMode: Int16, Enum, Verifiable {
| |- warning: cannot use conformance of 'Int16' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
| |- note: The missing import of module 'Common' will be added implicitly
| `- note: in associated type 'Self.T' (inferred as 'Int16')
87 | public typealias T = Int16
88 | public static var byteSize: Int { return MemoryLayout<Int16>.size }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:98:13: warning: cannot use conformance of 'Int16' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
96 |
97 |
98 | public enum org_apache_arrow_flatbuf_Precision: Int16, Enum, Verifiable {
| |- warning: cannot use conformance of 'Int16' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
| |- note: The missing import of module 'Common' will be added implicitly
| `- note: in associated type 'Self.T' (inferred as 'Int16')
99 | public typealias T = Int16
100 | public static var byteSize: Int { return MemoryLayout<Int16>.size }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:111:13: warning: cannot use conformance of 'Int16' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
109 |
110 |
111 | public enum org_apache_arrow_flatbuf_DateUnit: Int16, Enum, Verifiable {
| |- warning: cannot use conformance of 'Int16' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
| |- note: The missing import of module 'Common' will be added implicitly
| `- note: in associated type 'Self.T' (inferred as 'Int16')
112 | public typealias T = Int16
113 | public static var byteSize: Int { return MemoryLayout<Int16>.size }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:123:13: warning: cannot use conformance of 'Int16' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
121 |
122 |
123 | public enum org_apache_arrow_flatbuf_TimeUnit: Int16, Enum, Verifiable {
| |- warning: cannot use conformance of 'Int16' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
| |- note: The missing import of module 'Common' will be added implicitly
| `- note: in associated type 'Self.T' (inferred as 'Int16')
124 | public typealias T = Int16
125 | public static var byteSize: Int { return MemoryLayout<Int16>.size }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:137:13: warning: cannot use conformance of 'Int16' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
135 |
136 |
137 | public enum org_apache_arrow_flatbuf_IntervalUnit: Int16, Enum, Verifiable {
| |- warning: cannot use conformance of 'Int16' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
| |- note: The missing import of module 'Common' will be added implicitly
| `- note: in associated type 'Self.T' (inferred as 'Int16')
138 | public typealias T = Int16
139 | public static var byteSize: Int { return MemoryLayout<Int16>.size }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:153:13: warning: cannot use conformance of 'UInt8' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
151 | /// Top-level Type value, enabling extensible type-specific metadata. We can
152 | /// add new logical types to Type without breaking backwards compatibility
153 | public enum org_apache_arrow_flatbuf_Type_: UInt8, UnionEnum {
| |- warning: cannot use conformance of 'UInt8' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
| |- note: The missing import of module 'Common' will be added implicitly
| `- note: in associated type 'Self.T' (inferred as 'UInt8')
154 | public typealias T = UInt8
155 |
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:196:13: warning: cannot use conformance of 'Int16' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
194 | /// Dictionaries might be explicit maps between integers and values
195 | /// allowing for non-contiguous index values
196 | public enum org_apache_arrow_flatbuf_DictionaryKind: Int16, Enum, Verifiable {
| |- warning: cannot use conformance of 'Int16' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
| |- note: The missing import of module 'Common' will be added implicitly
| `- note: in associated type 'Self.T' (inferred as 'Int16')
197 | public typealias T = Int16
198 | public static var byteSize: Int { return MemoryLayout<Int16>.size }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:209:13: warning: cannot use conformance of 'Int16' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
207 | /// ----------------------------------------------------------------------
208 | /// Endianness of the platform producing the data
209 | public enum org_apache_arrow_flatbuf_Endianness: Int16, Enum, Verifiable {
| |- warning: cannot use conformance of 'Int16' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
| |- note: The missing import of module 'Common' will be added implicitly
| `- note: in associated type 'Self.T' (inferred as 'Int16')
210 | public typealias T = Int16
211 | public static var byteSize: Int { return MemoryLayout<Int16>.size }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:270:56: error: cannot find type 'FlatBufferObject' in scope
268 | /// ----------------------------------------------------------------------
269 | /// A Buffer represents a single contiguous memory segment
270 | public struct org_apache_arrow_flatbuf_Buffer_Mutable: FlatBufferObject {
| `- error: cannot find type 'FlatBufferObject' in scope
271 |
272 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:283:46: error: cannot find type 'FlatBufferObject' in scope
281 |
282 | /// These are stored in the flatbuffer in the Type union below
283 | public struct org_apache_arrow_flatbuf_Null: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
284 |
285 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:306:49: error: cannot find type 'FlatBufferObject' in scope
304 | /// (according to the physical memory layout). We used Struct_ here as
305 | /// Struct is a reserved word in Flatbuffers
306 | public struct org_apache_arrow_flatbuf_Struct_: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
307 |
308 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:326:46: error: cannot find type 'FlatBufferObject' in scope
324 | }
325 |
326 | public struct org_apache_arrow_flatbuf_List: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
327 |
328 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:348:51: error: cannot find type 'FlatBufferObject' in scope
346 | /// Same as List, but with 64-bit offsets, allowing to represent
347 | /// extremely large data values.
348 | public struct org_apache_arrow_flatbuf_LargeList: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
349 |
350 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:368:55: error: cannot find type 'FlatBufferObject' in scope
366 | }
367 |
368 | public struct org_apache_arrow_flatbuf_FixedSizeList: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
369 |
370 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:431:45: error: cannot find type 'FlatBufferObject' in scope
429 | /// for Map can make Map an alias for List. The "layout" attribute for the Map
430 | /// field must have the same contents as a List.
431 | public struct org_apache_arrow_flatbuf_Map: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
432 |
433 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:474:47: error: cannot find type 'FlatBufferObject' in scope
472 | /// optionally typeIds provides an indirection between the child offset and the type id
473 | /// for each child `typeIds[offset]` is the id used in the type vector
474 | public struct org_apache_arrow_flatbuf_Union: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
475 |
476 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:520:45: error: cannot find type 'FlatBufferObject' in scope
518 | }
519 |
520 | public struct org_apache_arrow_flatbuf_Int: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
521 |
522 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:564:55: error: cannot find type 'FlatBufferObject' in scope
562 | }
563 |
564 | public struct org_apache_arrow_flatbuf_FloatingPoint: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
565 |
566 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:602:46: error: cannot find type 'FlatBufferObject' in scope
600 |
601 | /// Unicode with UTF-8 encoding
602 | public struct org_apache_arrow_flatbuf_Utf8: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
603 |
604 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:623:48: error: cannot find type 'FlatBufferObject' in scope
621 |
622 | /// Opaque binary data
623 | public struct org_apache_arrow_flatbuf_Binary: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
624 |
625 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:645:51: error: cannot find type 'FlatBufferObject' in scope
643 | /// Same as Utf8, but with 64-bit offsets, allowing to represent
644 | /// extremely large data values.
645 | public struct org_apache_arrow_flatbuf_LargeUtf8: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
646 |
647 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:667:53: error: cannot find type 'FlatBufferObject' in scope
665 | /// Same as Binary, but with 64-bit offsets, allowing to represent
666 | /// extremely large data values.
667 | public struct org_apache_arrow_flatbuf_LargeBinary: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
668 |
669 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:687:57: error: cannot find type 'FlatBufferObject' in scope
685 | }
686 |
687 | public struct org_apache_arrow_flatbuf_FixedSizeBinary: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
688 |
689 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:725:46: error: cannot find type 'FlatBufferObject' in scope
723 | }
724 |
725 | public struct org_apache_arrow_flatbuf_Bool: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
726 |
727 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:750:55: error: cannot find type 'FlatBufferObject' in scope
748 | /// each corresponding index in the values child array ends.
749 | /// Like list/struct types, the value array can be of any type.
750 | public struct org_apache_arrow_flatbuf_RunEndEncoded: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
751 |
752 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:774:49: error: cannot find type 'FlatBufferObject' in scope
772 | /// are used. The representation uses the endianness indicated
773 | /// in the Schema.
774 | public struct org_apache_arrow_flatbuf_Decimal: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
775 |
776 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:833:46: error: cannot find type 'FlatBufferObject' in scope
831 | /// leap seconds), where the values are evenly divisible by 86400000
832 | /// * Days (32 bits) since the UNIX epoch
833 | public struct org_apache_arrow_flatbuf_Date: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
834 |
835 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:884:46: error: cannot find type 'FlatBufferObject' in scope
882 | /// measurements with leap seconds will need to be corrected when ingesting
883 | /// into Arrow (for example by replacing the value 86400 with 86399).
884 | public struct org_apache_arrow_flatbuf_Time: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
885 |
886 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:1032:51: error: cannot find type 'FlatBufferObject' in scope
1030 | /// was UTC; for example, the naive date-time "January 1st 1970, 00h00" would
1031 | /// be encoded as timestamp value 0.
1032 | public struct org_apache_arrow_flatbuf_Timestamp: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
1033 |
1034 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:1086:50: error: cannot find type 'FlatBufferObject' in scope
1084 | }
1085 |
1086 | public struct org_apache_arrow_flatbuf_Interval: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
1087 |
1088 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:1123:50: error: cannot find type 'FlatBufferObject' in scope
1121 | }
1122 |
1123 | public struct org_apache_arrow_flatbuf_Duration: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
1124 |
1125 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:1163:50: error: cannot find type 'FlatBufferObject' in scope
1161 | /// user defined key value pairs to add custom metadata to arrow
1162 | /// key namespacing is the responsibility of the user
1163 | public struct org_apache_arrow_flatbuf_KeyValue: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
1164 |
1165 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:1208:60: error: cannot find type 'FlatBufferObject' in scope
1206 | }
1207 |
1208 | public struct org_apache_arrow_flatbuf_DictionaryEncoding: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
1209 |
1210 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:1279:47: error: cannot find type 'FlatBufferObject' in scope
1277 | /// A field represents a named column in a record / row batch or child of a
1278 | /// nested type.
1279 | public struct org_apache_arrow_flatbuf_Field: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
1280 |
1281 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:1415:48: error: cannot find type 'FlatBufferObject' in scope
1413 | /// ----------------------------------------------------------------------
1414 | /// A Schema describes the columns in a row batch
1415 | public struct org_apache_arrow_flatbuf_Schema: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
1416 |
1417 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:495:127: error: value of type 'Table' has no member 'directRead'
493 | public var hasTypeIds: Bool { let o = _accessor.offset(VTOFFSET.typeIds.v); return o == 0 ? false : true }
494 | public var typeIdsCount: Int32 { let o = _accessor.offset(VTOFFSET.typeIds.v); return o == 0 ? 0 : _accessor.vector(count: o) }
495 | public func typeIds(at index: Int32) -> Int32 { let o = _accessor.offset(VTOFFSET.typeIds.v); return o == 0 ? 0 : _accessor.directRead(of: Int32.self, offset: _accessor.vector(at: o) + index * 4) }
| `- error: value of type 'Table' has no member 'directRead'
496 | public var typeIds: [Int32] { return _accessor.getVector(at: VTOFFSET.typeIds.v) ?? [] }
497 | public static func startUnion(_ fbb: inout FlatBufferBuilder) -> UOffset { fbb.startTable(with: 2) }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:1448:238: error: value of type 'Table' has no member 'directRead'
1446 | public var hasFeatures: Bool { let o = _accessor.offset(VTOFFSET.features.v); return o == 0 ? false : true }
1447 | public var featuresCount: Int32 { let o = _accessor.offset(VTOFFSET.features.v); return o == 0 ? 0 : _accessor.vector(count: o) }
1448 | public func features(at index: Int32) -> org_apache_arrow_flatbuf_Feature? { let o = _accessor.offset(VTOFFSET.features.v); return o == 0 ? org_apache_arrow_flatbuf_Feature.unused : org_apache_arrow_flatbuf_Feature(rawValue: _accessor.directRead(of: Int64.self, offset: _accessor.vector(at: o) + index * 8)) }
| `- error: value of type 'Table' has no member 'directRead'
1449 | public static func startSchema(_ fbb: inout FlatBufferBuilder) -> UOffset { fbb.startTable(with: 4) }
1450 | public static func add(endianness: org_apache_arrow_flatbuf_Endianness, _ fbb: inout FlatBufferBuilder) { fbb.add(element: endianness.rawValue, def: 0, at: VTOFFSET.endianness.p) }
/host/spi-builder-workspace/Arrow/Sources/Arrow/SparseTensor_generated.swift:24:13: warning: cannot use conformance of 'Int16' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
22 | import FlatBuffers
23 |
24 | public enum org_apache_arrow_flatbuf_SparseMatrixCompressedAxis: Int16, Enum, Verifiable {
| |- warning: cannot use conformance of 'Int16' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
| |- note: The missing import of module 'Common' will be added implicitly
| `- note: in associated type 'Self.T' (inferred as 'Int16')
25 | public typealias T = Int16
26 | public static var byteSize: Int { return MemoryLayout<Int16>.size }
/host/spi-builder-workspace/Arrow/Sources/Arrow/SparseTensor_generated.swift:36:13: warning: cannot use conformance of 'UInt8' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
34 |
35 |
36 | public enum org_apache_arrow_flatbuf_SparseTensorIndex: UInt8, UnionEnum {
| |- warning: cannot use conformance of 'UInt8' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
| |- note: The missing import of module 'Common' will be added implicitly
| `- note: in associated type 'Self.T' (inferred as 'UInt8')
37 | public typealias T = UInt8
38 |
/host/spi-builder-workspace/Arrow/Sources/Arrow/SparseTensor_generated.swift:87:62: error: cannot find type 'FlatBufferObject' in scope
85 | /// (row-major order), and it does not have duplicated entries. Otherwise,
86 | /// the indices may not be sorted, or may have duplicated entries.
87 | public struct org_apache_arrow_flatbuf_SparseTensorIndexCOO: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
88 |
89 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/SparseTensor_generated.swift:157:62: error: cannot find type 'FlatBufferObject' in scope
155 |
156 | /// Compressed Sparse format, that is matrix-specific.
157 | public struct org_apache_arrow_flatbuf_SparseMatrixIndexCSX: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
158 |
159 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/SparseTensor_generated.swift:256:62: error: cannot find type 'FlatBufferObject' in scope
254 |
255 | /// Compressed Sparse Fiber (CSF) sparse tensor index.
256 | public struct org_apache_arrow_flatbuf_SparseTensorIndexCSF: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
257 |
258 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/SparseTensor_generated.swift:395:54: error: cannot find type 'FlatBufferObject' in scope
393 | }
394 |
395 | public struct org_apache_arrow_flatbuf_SparseTensor: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
396 |
397 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/SparseTensor_generated.swift:113:141: error: value of type 'Table' has no member 'directRead'
111 | public var hasIndicesStrides: Bool { let o = _accessor.offset(VTOFFSET.indicesStrides.v); return o == 0 ? false : true }
112 | public var indicesStridesCount: Int32 { let o = _accessor.offset(VTOFFSET.indicesStrides.v); return o == 0 ? 0 : _accessor.vector(count: o) }
113 | public func indicesStrides(at index: Int32) -> Int64 { let o = _accessor.offset(VTOFFSET.indicesStrides.v); return o == 0 ? 0 : _accessor.directRead(of: Int64.self, offset: _accessor.vector(at: o) + index * 8) }
| `- error: value of type 'Table' has no member 'directRead'
114 | public var indicesStrides: [Int64] { return _accessor.getVector(at: VTOFFSET.indicesStrides.v) ?? [] }
115 | /// The location and size of the indices matrix's data
/host/spi-builder-workspace/Arrow/Sources/Arrow/SparseTensor_generated.swift:325:168: error: value of type 'Table' has no member 'directRead'
323 | public var hasIndptrBuffers: Bool { let o = _accessor.offset(VTOFFSET.indptrBuffers.v); return o == 0 ? false : true }
324 | public var indptrBuffersCount: Int32 { let o = _accessor.offset(VTOFFSET.indptrBuffers.v); return o == 0 ? 0 : _accessor.vector(count: o) }
325 | public func indptrBuffers(at index: Int32) -> org_apache_arrow_flatbuf_Buffer? { let o = _accessor.offset(VTOFFSET.indptrBuffers.v); return o == 0 ? nil : _accessor.directRead(of: org_apache_arrow_flatbuf_Buffer.self, offset: _accessor.vector(at: o) + index * 16) }
| `- error: value of type 'Table' has no member 'directRead'
326 | public func mutableIndptrBuffers(at index: Int32) -> org_apache_arrow_flatbuf_Buffer_Mutable? { let o = _accessor.offset(VTOFFSET.indptrBuffers.v); return o == 0 ? nil : org_apache_arrow_flatbuf_Buffer_Mutable(_accessor.bb, o: _accessor.vector(at: o) + index * 16) }
327 | /// The type of values in indicesBuffers
/host/spi-builder-workspace/Arrow/Sources/Arrow/SparseTensor_generated.swift:342:170: error: value of type 'Table' has no member 'directRead'
340 | public var hasIndicesBuffers: Bool { let o = _accessor.offset(VTOFFSET.indicesBuffers.v); return o == 0 ? false : true }
341 | public var indicesBuffersCount: Int32 { let o = _accessor.offset(VTOFFSET.indicesBuffers.v); return o == 0 ? 0 : _accessor.vector(count: o) }
342 | public func indicesBuffers(at index: Int32) -> org_apache_arrow_flatbuf_Buffer? { let o = _accessor.offset(VTOFFSET.indicesBuffers.v); return o == 0 ? nil : _accessor.directRead(of: org_apache_arrow_flatbuf_Buffer.self, offset: _accessor.vector(at: o) + index * 16) }
| `- error: value of type 'Table' has no member 'directRead'
343 | public func mutableIndicesBuffers(at index: Int32) -> org_apache_arrow_flatbuf_Buffer_Mutable? { let o = _accessor.offset(VTOFFSET.indicesBuffers.v); return o == 0 ? nil : org_apache_arrow_flatbuf_Buffer_Mutable(_accessor.bb, o: _accessor.vector(at: o) + index * 16) }
344 | /// axisOrder stores the sequence in which dimensions were traversed to
/host/spi-builder-workspace/Arrow/Sources/Arrow/SparseTensor_generated.swift:352:131: error: value of type 'Table' has no member 'directRead'
350 | public var hasAxisOrder: Bool { let o = _accessor.offset(VTOFFSET.axisOrder.v); return o == 0 ? false : true }
351 | public var axisOrderCount: Int32 { let o = _accessor.offset(VTOFFSET.axisOrder.v); return o == 0 ? 0 : _accessor.vector(count: o) }
352 | public func axisOrder(at index: Int32) -> Int32 { let o = _accessor.offset(VTOFFSET.axisOrder.v); return o == 0 ? 0 : _accessor.directRead(of: Int32.self, offset: _accessor.vector(at: o) + index * 4) }
| `- error: value of type 'Table' has no member 'directRead'
353 | public var axisOrder: [Int32] { return _accessor.getVector(at: VTOFFSET.axisOrder.v) ?? [] }
354 | public static func startSparseTensorIndexCSF(_ fbb: inout FlatBufferBuilder) -> UOffset { fbb.startTable(with: 5) }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Tensor_generated.swift:27:51: error: cannot find type 'FlatBufferObject' in scope
25 | /// Data structures for dense tensors
26 | /// Shape data for a single axis in a tensor
27 | public struct org_apache_arrow_flatbuf_TensorDim: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
28 |
29 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Tensor_generated.swift:73:48: error: cannot find type 'FlatBufferObject' in scope
71 | }
72 |
73 | public struct org_apache_arrow_flatbuf_Tensor: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
74 |
75 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Tensor_generated.swift:106:127: error: value of type 'Table' has no member 'directRead'
104 | public var hasStrides: Bool { let o = _accessor.offset(VTOFFSET.strides.v); return o == 0 ? false : true }
105 | public var stridesCount: Int32 { let o = _accessor.offset(VTOFFSET.strides.v); return o == 0 ? 0 : _accessor.vector(count: o) }
106 | public func strides(at index: Int32) -> Int64 { let o = _accessor.offset(VTOFFSET.strides.v); return o == 0 ? 0 : _accessor.directRead(of: Int64.self, offset: _accessor.vector(at: o) + index * 8) }
| `- error: value of type 'Table' has no member 'directRead'
107 | public var strides: [Int64] { return _accessor.getVector(at: VTOFFSET.strides.v) ?? [] }
108 | /// The location and size of the tensor's data
[732/738] Compiling Arrow Tensor_generated.swift
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:24:13: warning: cannot use conformance of 'Int16' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
22 | import FlatBuffers
23 |
24 | public enum org_apache_arrow_flatbuf_MetadataVersion: Int16, Enum, Verifiable {
| |- warning: cannot use conformance of 'Int16' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
| |- note: The missing import of module 'Common' will be added implicitly
| `- note: in associated type 'Self.T' (inferred as 'Int16')
25 | public typealias T = Int16
26 | public static var byteSize: Int { return MemoryLayout<Int16>.size }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:67:13: warning: cannot use conformance of 'Int64' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
65 | /// to facilitate exchanging and comparing bitmaps for supported
66 | /// features.
67 | public enum org_apache_arrow_flatbuf_Feature: Int64, Enum, Verifiable {
| |- warning: cannot use conformance of 'Int64' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
| |- note: The missing import of module 'Common' will be added implicitly
| `- note: in associated type 'Self.T' (inferred as 'Int64')
68 | public typealias T = Int64
69 | public static var byteSize: Int { return MemoryLayout<Int64>.size }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:86:13: warning: cannot use conformance of 'Int16' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
84 |
85 |
86 | public enum org_apache_arrow_flatbuf_UnionMode: Int16, Enum, Verifiable {
| |- warning: cannot use conformance of 'Int16' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
| |- note: The missing import of module 'Common' will be added implicitly
| `- note: in associated type 'Self.T' (inferred as 'Int16')
87 | public typealias T = Int16
88 | public static var byteSize: Int { return MemoryLayout<Int16>.size }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:98:13: warning: cannot use conformance of 'Int16' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
96 |
97 |
98 | public enum org_apache_arrow_flatbuf_Precision: Int16, Enum, Verifiable {
| |- warning: cannot use conformance of 'Int16' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
| |- note: The missing import of module 'Common' will be added implicitly
| `- note: in associated type 'Self.T' (inferred as 'Int16')
99 | public typealias T = Int16
100 | public static var byteSize: Int { return MemoryLayout<Int16>.size }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:111:13: warning: cannot use conformance of 'Int16' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
109 |
110 |
111 | public enum org_apache_arrow_flatbuf_DateUnit: Int16, Enum, Verifiable {
| |- warning: cannot use conformance of 'Int16' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
| |- note: The missing import of module 'Common' will be added implicitly
| `- note: in associated type 'Self.T' (inferred as 'Int16')
112 | public typealias T = Int16
113 | public static var byteSize: Int { return MemoryLayout<Int16>.size }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:123:13: warning: cannot use conformance of 'Int16' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
121 |
122 |
123 | public enum org_apache_arrow_flatbuf_TimeUnit: Int16, Enum, Verifiable {
| |- warning: cannot use conformance of 'Int16' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
| |- note: The missing import of module 'Common' will be added implicitly
| `- note: in associated type 'Self.T' (inferred as 'Int16')
124 | public typealias T = Int16
125 | public static var byteSize: Int { return MemoryLayout<Int16>.size }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:137:13: warning: cannot use conformance of 'Int16' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
135 |
136 |
137 | public enum org_apache_arrow_flatbuf_IntervalUnit: Int16, Enum, Verifiable {
| |- warning: cannot use conformance of 'Int16' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
| |- note: The missing import of module 'Common' will be added implicitly
| `- note: in associated type 'Self.T' (inferred as 'Int16')
138 | public typealias T = Int16
139 | public static var byteSize: Int { return MemoryLayout<Int16>.size }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:153:13: warning: cannot use conformance of 'UInt8' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
151 | /// Top-level Type value, enabling extensible type-specific metadata. We can
152 | /// add new logical types to Type without breaking backwards compatibility
153 | public enum org_apache_arrow_flatbuf_Type_: UInt8, UnionEnum {
| |- warning: cannot use conformance of 'UInt8' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
| |- note: The missing import of module 'Common' will be added implicitly
| `- note: in associated type 'Self.T' (inferred as 'UInt8')
154 | public typealias T = UInt8
155 |
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:196:13: warning: cannot use conformance of 'Int16' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
194 | /// Dictionaries might be explicit maps between integers and values
195 | /// allowing for non-contiguous index values
196 | public enum org_apache_arrow_flatbuf_DictionaryKind: Int16, Enum, Verifiable {
| |- warning: cannot use conformance of 'Int16' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
| |- note: The missing import of module 'Common' will be added implicitly
| `- note: in associated type 'Self.T' (inferred as 'Int16')
197 | public typealias T = Int16
198 | public static var byteSize: Int { return MemoryLayout<Int16>.size }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:209:13: warning: cannot use conformance of 'Int16' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
207 | /// ----------------------------------------------------------------------
208 | /// Endianness of the platform producing the data
209 | public enum org_apache_arrow_flatbuf_Endianness: Int16, Enum, Verifiable {
| |- warning: cannot use conformance of 'Int16' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
| |- note: The missing import of module 'Common' will be added implicitly
| `- note: in associated type 'Self.T' (inferred as 'Int16')
210 | public typealias T = Int16
211 | public static var byteSize: Int { return MemoryLayout<Int16>.size }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:270:56: error: cannot find type 'FlatBufferObject' in scope
268 | /// ----------------------------------------------------------------------
269 | /// A Buffer represents a single contiguous memory segment
270 | public struct org_apache_arrow_flatbuf_Buffer_Mutable: FlatBufferObject {
| `- error: cannot find type 'FlatBufferObject' in scope
271 |
272 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:283:46: error: cannot find type 'FlatBufferObject' in scope
281 |
282 | /// These are stored in the flatbuffer in the Type union below
283 | public struct org_apache_arrow_flatbuf_Null: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
284 |
285 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:306:49: error: cannot find type 'FlatBufferObject' in scope
304 | /// (according to the physical memory layout). We used Struct_ here as
305 | /// Struct is a reserved word in Flatbuffers
306 | public struct org_apache_arrow_flatbuf_Struct_: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
307 |
308 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:326:46: error: cannot find type 'FlatBufferObject' in scope
324 | }
325 |
326 | public struct org_apache_arrow_flatbuf_List: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
327 |
328 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:348:51: error: cannot find type 'FlatBufferObject' in scope
346 | /// Same as List, but with 64-bit offsets, allowing to represent
347 | /// extremely large data values.
348 | public struct org_apache_arrow_flatbuf_LargeList: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
349 |
350 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:368:55: error: cannot find type 'FlatBufferObject' in scope
366 | }
367 |
368 | public struct org_apache_arrow_flatbuf_FixedSizeList: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
369 |
370 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:431:45: error: cannot find type 'FlatBufferObject' in scope
429 | /// for Map can make Map an alias for List. The "layout" attribute for the Map
430 | /// field must have the same contents as a List.
431 | public struct org_apache_arrow_flatbuf_Map: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
432 |
433 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:474:47: error: cannot find type 'FlatBufferObject' in scope
472 | /// optionally typeIds provides an indirection between the child offset and the type id
473 | /// for each child `typeIds[offset]` is the id used in the type vector
474 | public struct org_apache_arrow_flatbuf_Union: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
475 |
476 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:520:45: error: cannot find type 'FlatBufferObject' in scope
518 | }
519 |
520 | public struct org_apache_arrow_flatbuf_Int: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
521 |
522 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:564:55: error: cannot find type 'FlatBufferObject' in scope
562 | }
563 |
564 | public struct org_apache_arrow_flatbuf_FloatingPoint: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
565 |
566 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:602:46: error: cannot find type 'FlatBufferObject' in scope
600 |
601 | /// Unicode with UTF-8 encoding
602 | public struct org_apache_arrow_flatbuf_Utf8: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
603 |
604 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:623:48: error: cannot find type 'FlatBufferObject' in scope
621 |
622 | /// Opaque binary data
623 | public struct org_apache_arrow_flatbuf_Binary: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
624 |
625 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:645:51: error: cannot find type 'FlatBufferObject' in scope
643 | /// Same as Utf8, but with 64-bit offsets, allowing to represent
644 | /// extremely large data values.
645 | public struct org_apache_arrow_flatbuf_LargeUtf8: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
646 |
647 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:667:53: error: cannot find type 'FlatBufferObject' in scope
665 | /// Same as Binary, but with 64-bit offsets, allowing to represent
666 | /// extremely large data values.
667 | public struct org_apache_arrow_flatbuf_LargeBinary: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
668 |
669 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:687:57: error: cannot find type 'FlatBufferObject' in scope
685 | }
686 |
687 | public struct org_apache_arrow_flatbuf_FixedSizeBinary: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
688 |
689 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:725:46: error: cannot find type 'FlatBufferObject' in scope
723 | }
724 |
725 | public struct org_apache_arrow_flatbuf_Bool: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
726 |
727 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:750:55: error: cannot find type 'FlatBufferObject' in scope
748 | /// each corresponding index in the values child array ends.
749 | /// Like list/struct types, the value array can be of any type.
750 | public struct org_apache_arrow_flatbuf_RunEndEncoded: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
751 |
752 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:774:49: error: cannot find type 'FlatBufferObject' in scope
772 | /// are used. The representation uses the endianness indicated
773 | /// in the Schema.
774 | public struct org_apache_arrow_flatbuf_Decimal: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
775 |
776 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:833:46: error: cannot find type 'FlatBufferObject' in scope
831 | /// leap seconds), where the values are evenly divisible by 86400000
832 | /// * Days (32 bits) since the UNIX epoch
833 | public struct org_apache_arrow_flatbuf_Date: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
834 |
835 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:884:46: error: cannot find type 'FlatBufferObject' in scope
882 | /// measurements with leap seconds will need to be corrected when ingesting
883 | /// into Arrow (for example by replacing the value 86400 with 86399).
884 | public struct org_apache_arrow_flatbuf_Time: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
885 |
886 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:1032:51: error: cannot find type 'FlatBufferObject' in scope
1030 | /// was UTC; for example, the naive date-time "January 1st 1970, 00h00" would
1031 | /// be encoded as timestamp value 0.
1032 | public struct org_apache_arrow_flatbuf_Timestamp: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
1033 |
1034 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:1086:50: error: cannot find type 'FlatBufferObject' in scope
1084 | }
1085 |
1086 | public struct org_apache_arrow_flatbuf_Interval: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
1087 |
1088 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:1123:50: error: cannot find type 'FlatBufferObject' in scope
1121 | }
1122 |
1123 | public struct org_apache_arrow_flatbuf_Duration: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
1124 |
1125 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:1163:50: error: cannot find type 'FlatBufferObject' in scope
1161 | /// user defined key value pairs to add custom metadata to arrow
1162 | /// key namespacing is the responsibility of the user
1163 | public struct org_apache_arrow_flatbuf_KeyValue: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
1164 |
1165 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:1208:60: error: cannot find type 'FlatBufferObject' in scope
1206 | }
1207 |
1208 | public struct org_apache_arrow_flatbuf_DictionaryEncoding: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
1209 |
1210 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:1279:47: error: cannot find type 'FlatBufferObject' in scope
1277 | /// A field represents a named column in a record / row batch or child of a
1278 | /// nested type.
1279 | public struct org_apache_arrow_flatbuf_Field: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
1280 |
1281 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:1415:48: error: cannot find type 'FlatBufferObject' in scope
1413 | /// ----------------------------------------------------------------------
1414 | /// A Schema describes the columns in a row batch
1415 | public struct org_apache_arrow_flatbuf_Schema: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
1416 |
1417 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:495:127: error: value of type 'Table' has no member 'directRead'
493 | public var hasTypeIds: Bool { let o = _accessor.offset(VTOFFSET.typeIds.v); return o == 0 ? false : true }
494 | public var typeIdsCount: Int32 { let o = _accessor.offset(VTOFFSET.typeIds.v); return o == 0 ? 0 : _accessor.vector(count: o) }
495 | public func typeIds(at index: Int32) -> Int32 { let o = _accessor.offset(VTOFFSET.typeIds.v); return o == 0 ? 0 : _accessor.directRead(of: Int32.self, offset: _accessor.vector(at: o) + index * 4) }
| `- error: value of type 'Table' has no member 'directRead'
496 | public var typeIds: [Int32] { return _accessor.getVector(at: VTOFFSET.typeIds.v) ?? [] }
497 | public static func startUnion(_ fbb: inout FlatBufferBuilder) -> UOffset { fbb.startTable(with: 2) }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Schema_generated.swift:1448:238: error: value of type 'Table' has no member 'directRead'
1446 | public var hasFeatures: Bool { let o = _accessor.offset(VTOFFSET.features.v); return o == 0 ? false : true }
1447 | public var featuresCount: Int32 { let o = _accessor.offset(VTOFFSET.features.v); return o == 0 ? 0 : _accessor.vector(count: o) }
1448 | public func features(at index: Int32) -> org_apache_arrow_flatbuf_Feature? { let o = _accessor.offset(VTOFFSET.features.v); return o == 0 ? org_apache_arrow_flatbuf_Feature.unused : org_apache_arrow_flatbuf_Feature(rawValue: _accessor.directRead(of: Int64.self, offset: _accessor.vector(at: o) + index * 8)) }
| `- error: value of type 'Table' has no member 'directRead'
1449 | public static func startSchema(_ fbb: inout FlatBufferBuilder) -> UOffset { fbb.startTable(with: 4) }
1450 | public static func add(endianness: org_apache_arrow_flatbuf_Endianness, _ fbb: inout FlatBufferBuilder) { fbb.add(element: endianness.rawValue, def: 0, at: VTOFFSET.endianness.p) }
/host/spi-builder-workspace/Arrow/Sources/Arrow/SparseTensor_generated.swift:24:13: warning: cannot use conformance of 'Int16' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
22 | import FlatBuffers
23 |
24 | public enum org_apache_arrow_flatbuf_SparseMatrixCompressedAxis: Int16, Enum, Verifiable {
| |- warning: cannot use conformance of 'Int16' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
| |- note: The missing import of module 'Common' will be added implicitly
| `- note: in associated type 'Self.T' (inferred as 'Int16')
25 | public typealias T = Int16
26 | public static var byteSize: Int { return MemoryLayout<Int16>.size }
/host/spi-builder-workspace/Arrow/Sources/Arrow/SparseTensor_generated.swift:36:13: warning: cannot use conformance of 'UInt8' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
34 |
35 |
36 | public enum org_apache_arrow_flatbuf_SparseTensorIndex: UInt8, UnionEnum {
| |- warning: cannot use conformance of 'UInt8' to 'Scalar' here; 'Common' was not imported by this file; this is an error in the Swift 6 language mode
| |- note: The missing import of module 'Common' will be added implicitly
| `- note: in associated type 'Self.T' (inferred as 'UInt8')
37 | public typealias T = UInt8
38 |
/host/spi-builder-workspace/Arrow/Sources/Arrow/SparseTensor_generated.swift:87:62: error: cannot find type 'FlatBufferObject' in scope
85 | /// (row-major order), and it does not have duplicated entries. Otherwise,
86 | /// the indices may not be sorted, or may have duplicated entries.
87 | public struct org_apache_arrow_flatbuf_SparseTensorIndexCOO: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
88 |
89 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/SparseTensor_generated.swift:157:62: error: cannot find type 'FlatBufferObject' in scope
155 |
156 | /// Compressed Sparse format, that is matrix-specific.
157 | public struct org_apache_arrow_flatbuf_SparseMatrixIndexCSX: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
158 |
159 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/SparseTensor_generated.swift:256:62: error: cannot find type 'FlatBufferObject' in scope
254 |
255 | /// Compressed Sparse Fiber (CSF) sparse tensor index.
256 | public struct org_apache_arrow_flatbuf_SparseTensorIndexCSF: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
257 |
258 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/SparseTensor_generated.swift:395:54: error: cannot find type 'FlatBufferObject' in scope
393 | }
394 |
395 | public struct org_apache_arrow_flatbuf_SparseTensor: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
396 |
397 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/SparseTensor_generated.swift:113:141: error: value of type 'Table' has no member 'directRead'
111 | public var hasIndicesStrides: Bool { let o = _accessor.offset(VTOFFSET.indicesStrides.v); return o == 0 ? false : true }
112 | public var indicesStridesCount: Int32 { let o = _accessor.offset(VTOFFSET.indicesStrides.v); return o == 0 ? 0 : _accessor.vector(count: o) }
113 | public func indicesStrides(at index: Int32) -> Int64 { let o = _accessor.offset(VTOFFSET.indicesStrides.v); return o == 0 ? 0 : _accessor.directRead(of: Int64.self, offset: _accessor.vector(at: o) + index * 8) }
| `- error: value of type 'Table' has no member 'directRead'
114 | public var indicesStrides: [Int64] { return _accessor.getVector(at: VTOFFSET.indicesStrides.v) ?? [] }
115 | /// The location and size of the indices matrix's data
/host/spi-builder-workspace/Arrow/Sources/Arrow/SparseTensor_generated.swift:325:168: error: value of type 'Table' has no member 'directRead'
323 | public var hasIndptrBuffers: Bool { let o = _accessor.offset(VTOFFSET.indptrBuffers.v); return o == 0 ? false : true }
324 | public var indptrBuffersCount: Int32 { let o = _accessor.offset(VTOFFSET.indptrBuffers.v); return o == 0 ? 0 : _accessor.vector(count: o) }
325 | public func indptrBuffers(at index: Int32) -> org_apache_arrow_flatbuf_Buffer? { let o = _accessor.offset(VTOFFSET.indptrBuffers.v); return o == 0 ? nil : _accessor.directRead(of: org_apache_arrow_flatbuf_Buffer.self, offset: _accessor.vector(at: o) + index * 16) }
| `- error: value of type 'Table' has no member 'directRead'
326 | public func mutableIndptrBuffers(at index: Int32) -> org_apache_arrow_flatbuf_Buffer_Mutable? { let o = _accessor.offset(VTOFFSET.indptrBuffers.v); return o == 0 ? nil : org_apache_arrow_flatbuf_Buffer_Mutable(_accessor.bb, o: _accessor.vector(at: o) + index * 16) }
327 | /// The type of values in indicesBuffers
/host/spi-builder-workspace/Arrow/Sources/Arrow/SparseTensor_generated.swift:342:170: error: value of type 'Table' has no member 'directRead'
340 | public var hasIndicesBuffers: Bool { let o = _accessor.offset(VTOFFSET.indicesBuffers.v); return o == 0 ? false : true }
341 | public var indicesBuffersCount: Int32 { let o = _accessor.offset(VTOFFSET.indicesBuffers.v); return o == 0 ? 0 : _accessor.vector(count: o) }
342 | public func indicesBuffers(at index: Int32) -> org_apache_arrow_flatbuf_Buffer? { let o = _accessor.offset(VTOFFSET.indicesBuffers.v); return o == 0 ? nil : _accessor.directRead(of: org_apache_arrow_flatbuf_Buffer.self, offset: _accessor.vector(at: o) + index * 16) }
| `- error: value of type 'Table' has no member 'directRead'
343 | public func mutableIndicesBuffers(at index: Int32) -> org_apache_arrow_flatbuf_Buffer_Mutable? { let o = _accessor.offset(VTOFFSET.indicesBuffers.v); return o == 0 ? nil : org_apache_arrow_flatbuf_Buffer_Mutable(_accessor.bb, o: _accessor.vector(at: o) + index * 16) }
344 | /// axisOrder stores the sequence in which dimensions were traversed to
/host/spi-builder-workspace/Arrow/Sources/Arrow/SparseTensor_generated.swift:352:131: error: value of type 'Table' has no member 'directRead'
350 | public var hasAxisOrder: Bool { let o = _accessor.offset(VTOFFSET.axisOrder.v); return o == 0 ? false : true }
351 | public var axisOrderCount: Int32 { let o = _accessor.offset(VTOFFSET.axisOrder.v); return o == 0 ? 0 : _accessor.vector(count: o) }
352 | public func axisOrder(at index: Int32) -> Int32 { let o = _accessor.offset(VTOFFSET.axisOrder.v); return o == 0 ? 0 : _accessor.directRead(of: Int32.self, offset: _accessor.vector(at: o) + index * 4) }
| `- error: value of type 'Table' has no member 'directRead'
353 | public var axisOrder: [Int32] { return _accessor.getVector(at: VTOFFSET.axisOrder.v) ?? [] }
354 | public static func startSparseTensorIndexCSF(_ fbb: inout FlatBufferBuilder) -> UOffset { fbb.startTable(with: 5) }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Tensor_generated.swift:27:51: error: cannot find type 'FlatBufferObject' in scope
25 | /// Data structures for dense tensors
26 | /// Shape data for a single axis in a tensor
27 | public struct org_apache_arrow_flatbuf_TensorDim: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
28 |
29 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Tensor_generated.swift:73:48: error: cannot find type 'FlatBufferObject' in scope
71 | }
72 |
73 | public struct org_apache_arrow_flatbuf_Tensor: FlatBufferObject, Verifiable {
| `- error: cannot find type 'FlatBufferObject' in scope
74 |
75 | static func validateVersion() { FlatBuffersVersion_23_1_4() }
/host/spi-builder-workspace/Arrow/Sources/Arrow/Tensor_generated.swift:106:127: error: value of type 'Table' has no member 'directRead'
104 | public var hasStrides: Bool { let o = _accessor.offset(VTOFFSET.strides.v); return o == 0 ? false : true }
105 | public var stridesCount: Int32 { let o = _accessor.offset(VTOFFSET.strides.v); return o == 0 ? 0 : _accessor.vector(count: o) }
106 | public func strides(at index: Int32) -> Int64 { let o = _accessor.offset(VTOFFSET.strides.v); return o == 0 ? 0 : _accessor.directRead(of: Int64.self, offset: _accessor.vector(at: o) + index * 8) }
| `- error: value of type 'Table' has no member 'directRead'
107 | public var strides: [Int64] { return _accessor.getVector(at: VTOFFSET.strides.v) ?? [] }
108 | /// The location and size of the tensor's data
[732/738] Compiling c-nioatomics.c
[733/738] Compiling c-atomics.c
[735/745] Compiling NIOConcurrencyHelpers NIOLockedValueBox.swift
[736/745] Compiling NIOConcurrencyHelpers NIOThreadPoolWorkAvailable.swift
[737/745] Compiling Arrow ArrowArray.swift
[738/745] Compiling Arrow ArrowArrayBuilder.swift
[739/745] Compiling Arrow ArrowBuffer.swift
[740/745] Compiling Arrow ArrowBufferBuilder.swift
[741/745] Compiling NIOConcurrencyHelpers NIOLock.swift
[742/745] Compiling NIOConcurrencyHelpers NIOAtomic.swift
BUILD FAILURE 6.3 linux