From 8a8584c197f4070c4345970eeef0ccd323476fd0 Mon Sep 17 00:00:00 2001 From: Dongjoon Hyun Date: Fri, 20 Jun 2025 15:19:58 -0700 Subject: [PATCH 1/3] feat: Make `ArrowTypeId` and `Info` enums `Sendable` --- Arrow/Sources/Arrow/ArrowType.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Arrow/Sources/Arrow/ArrowType.swift b/Arrow/Sources/Arrow/ArrowType.swift index 9b6091f..381078f 100644 --- a/Arrow/Sources/Arrow/ArrowType.swift +++ b/Arrow/Sources/Arrow/ArrowType.swift @@ -38,7 +38,7 @@ public enum ArrowError: Error { case invalid(String) } -public enum ArrowTypeId { +public enum ArrowTypeId: Sendable { case binary case boolean case date32 @@ -213,7 +213,7 @@ public class ArrowType { } } - public enum Info { + public enum Info: Sendable { case primitiveInfo(ArrowTypeId) case variableInfo(ArrowTypeId) case timeInfo(ArrowTypeId) From c64f4ab77015b95cf5de2717349b6ac3698e1d72 Mon Sep 17 00:00:00 2001 From: Dongjoon Hyun Date: Fri, 20 Jun 2025 15:28:41 -0700 Subject: [PATCH 2/3] Empty commit From d14edf5b67d101c45e5bc1ae2be18928ca898734 Mon Sep 17 00:00:00 2001 From: Dongjoon Hyun Date: Fri, 20 Jun 2025 15:31:06 -0700 Subject: [PATCH 3/3] Empty commit 2