From 574d6fe5c64d843518a2d0a7646b3f5fb1f00ffd 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 ddddf301b353e18c203a69bf41ef4a4f93534dac 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 b1105b7b7117f824d2ea071a789ea19987930b73 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