sunchao / parquet-rs

Apache Parquet implementation in Rust
Apache License 2.0
149 stars 20 forks source link

Make DataType trait static #137

Closed sunchao closed 6 years ago

sunchao commented 6 years ago

There are many places where we require DataType to be static and have to add the T: 'static notation. As DataType is already static in definition, we should be able to declare it as so and remove all the notations where it is used.

coveralls commented 6 years ago

Pull Request Test Coverage Report for Build 570


Totals Coverage Status
Change from base Build 564: 0.0%
Covered Lines: 11349
Relevant Lines: 11890

💛 - Coveralls
sunchao commented 6 years ago

Merged. Thanks @sadikovi for approving.