You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 27, 2023. It is now read-only.
I have a table with over 100 columns. Using migrations addProperties(to: builder) has no issues, but when specifying each column using builder.field(for: \.myColumn), then bad things happen.
Memory usage climbs to over 100mb and the execution is frozen for ~1 minute. From profiling, I believe CodableReflection is the cause of this, specifically this function: public static func anyDecodeProperty(valueType: Any.Type, keyPath: AnyKeyPath) throws -> ReflectedProperty?