Skip to content

Tags

Tags give the ability to mark specific points in history as being important
  • v0.2.0

    723067a6 · Publish v0.2.0 ·
    v0.2.0
    
    Performance improvements:
    
    * Check row group statistics against every key, instead of only the min/max
    * Use Bloom Filters even when statistics matching is not implemented
    * Share cached ParquetMetaData between readers of the same pool
    
    New features:
    
    * Add support for Binary keys
    * Implement Add, AddAssign, and Sum for all metrics traits
    * Add FilterPrimitiveConfigurator
    * Re-export arrow and parquet
    * Return metrics instead of logging them
    * Improve errors when a file cannot be read
    
    Bug fixes:
    
    * Count EF index evaluation toward total time
    * Fix filtering predicate on non-first column
    * Ignore non-Parquet files in a directory
    * README: Fix syntax highlighting on crates.io
    
    Breaking changes:
    
    * Move ReaderBuilderConfigurator to config::Configurator along with its impls
    
    Internal:
    
    * Add tests for Bloom Filters
    * rustfmt
    * Add end-to-end tests
  • v0.1.0

    683cb030 · Publish v0.1.0 ·
    v0.1.0
    
    Initial release
    
    Provides a very low-level API to filter on integers, and a bare-bones
    example `ReaderBuilderConfigurator` that only supports filtering out rows
    based on a `FixedSizeBinary` key.