Skip to content

Commit

Permalink
field order fix
Browse files Browse the repository at this point in the history
  • Loading branch information
aloneguid committed Jan 8, 2024
1 parent 49c44b8 commit c0b3496
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/Parquet.Test/Serialisation/SchemaReflectorTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -287,11 +287,6 @@ class DatesPoco {
[ParquetTimestamp]
public DateTime TimestampDate { get; set; }

#if NET7_0_OR_GREATER
[ParquetTimestamp(ParquetTimestampResolution.Microseconds)]
public DateTime TimestampMicrosDate { get; set; }
#endif

public TimeSpan DefaultTime { get; set; }

[ParquetMicroSecondsTime]
Expand All @@ -305,6 +300,11 @@ class DatesPoco {
[ParquetMicroSecondsTime]
public TimeOnly MicroTimeOnly { get; set; }
#endif

#if NET7_0_OR_GREATER
[ParquetTimestamp(ParquetTimestampResolution.Microseconds)]
public DateTime TimestampMicrosDate { get; set; }
#endif
}

[Fact]
Expand Down

0 comments on commit c0b3496

Please sign in to comment.