-
-
Notifications
You must be signed in to change notification settings - Fork 153
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Library-Wide Schema improvements (#308)
- low-level: full logical types support in Parquet Thrift schema - class serializer supports custom attributes to customize serialisation of dates, times, and decimals. - added support for .NET 6 DateOnly type.
- Loading branch information
Showing
22 changed files
with
576 additions
and
300 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
name: 'Full Workflow' | ||
|
||
env: | ||
VERSION: 4.8.1 | ||
VERSION: 4.9.0 | ||
ASM_VERSION: 4.0.0 | ||
|
||
on: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,13 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Text; | ||
using Parquet.File.Values.Primitives; | ||
using Parquet.File.Values.Primitives; | ||
using Xunit; | ||
|
||
namespace Parquet.Test.File.Values.Primitives | ||
{ | ||
public class BigDecimalTest | ||
{ | ||
[Fact] | ||
public void Valid_but_massive_bigdecimal() | ||
{ | ||
var bd = new BigDecimal(83086059037282.54m, 38, 16); | ||
namespace Parquet.Test.File.Values.Primitives { | ||
public class BigDecimalTest { | ||
[Fact] | ||
public void Valid_but_massive_bigdecimal() { | ||
var bd = new BigDecimal(83086059037282.54m, 38, 16); | ||
|
||
//if exception is not thrown (overflow) we're OK | ||
} | ||
} | ||
//if exception is not thrown (overflow) we're OK | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.