Skip to content

Commit f4f8461

Browse files
committed
Support named transformers, set attrType
Named transformers should just work too? Also setting the `attributeType` to `.transformableAttributeType`.
1 parent 85ac09a commit f4f8461

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Sources/ManagedModels/SchemaCompatibility/NSAttributeDescription+Data.swift

+4-2
Original file line numberDiff line numberDiff line change
@@ -206,9 +206,10 @@ private extension NSAttributeDescription {
206206
case .ephemeral: isTransient = true
207207

208208
case .transformableByName(let name):
209-
fatalError("Not supported")
210-
case .transformableByType(let type):
211209
assert(valueTransformerName == nil)
210+
attributeType = .transformableAttributeType
211+
valueTransformerName = name
212+
case .transformableByType(let type):
212213
let name = NSStringFromClass(type)
213214
if !ValueTransformer.valueTransformerNames().contains(.init(name)) {
214215
// no access to valueTransformerForName?
@@ -217,6 +218,7 @@ private extension NSAttributeDescription {
217218
.setValueTransformer(transformer, forName: .init(name))
218219
}
219220
valueTransformerName = name
221+
attributeType = .transformableAttributeType
220222

221223
case .allowsCloudEncryption: // FIXME: restrict availability
222224
if #available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *) {

0 commit comments

Comments
 (0)