Skip to content

Commit

Permalink
wrong limitation for the framework
Browse files Browse the repository at this point in the history
  • Loading branch information
aloneguid committed Dec 4, 2024
1 parent ca6f6ca commit 1846cc7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Parquet/Serialization/ParquetSerializer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public static class ParquetSerializer {
private static readonly ConcurrentDictionary<Type, object> _typeToAssembler = new();
private static readonly ConcurrentDictionary<ParquetSchema, object> _schemaToAssembler = new();
private static readonly Dictionary<Type, HashSet<Type>> AllowedDeserializerConversions = new() {
#if NET8_0_OR_GREATER
#if NET6_0_OR_GREATER
{ typeof(DateOnly), new HashSet<Type>{ typeof(DateTime) } },
{ typeof(TimeOnly), new HashSet<Type>{ typeof(TimeSpan) } },
#endif
Expand Down

0 comments on commit 1846cc7

Please sign in to comment.