We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 059686c commit d252590Copy full SHA for d252590
src/csharp/Microsoft.Spark/Utils/UdfSerDe.cs
@@ -264,7 +264,7 @@ private static Type DeserializeType(TypeData typeData) =>
264
{
265
Type type = AssemblyLoader.LoadAssembly(
266
td.AssemblyName,
267
- td.AssemblyFileName).GetType(td.Name);
+ td.AssemblyFileName)?.GetType(td.Name, true);
268
if (type == null)
269
270
throw new FileNotFoundException(
0 commit comments