Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
3f7076a
Fix incorrect statistics read for unsigned integers columns in parquet
xinlifoobar May 29, 2024
69f293f
Merge branch 'main' of github.com:apache/datafusion into dev/xinli/st…
xinlifoobar May 29, 2024
095ac39
Staging the change for faster stat
xinlifoobar May 29, 2024
2faec57
Improve performance of extracting statistics from parquet files
xinlifoobar May 29, 2024
b2ee805
Revert "Improve performance of extracting statistics from parquet files"
xinlifoobar May 30, 2024
8d7e9f2
Revert "Staging the change for faster stat"
xinlifoobar May 30, 2024
5a3fdec
Refine using the iterator idea
xinlifoobar May 30, 2024
9f552e8
Add the rest types
xinlifoobar May 30, 2024
7f16956
Consolidate Decimal statistics extraction
alamb May 30, 2024
26f5431
clippy
alamb May 30, 2024
b309912
Merge remote-tracking branch 'apache/main' into dev/xinli/stat_perf
alamb May 30, 2024
860cb00
Simplify
alamb May 30, 2024
524dc2f
Fix dictionary type
alamb May 30, 2024
a788045
Fix incorrect statistics read for timestamp columns in parquet
xinlifoobar May 31, 2024
b5d9897
Merge pull request #1 from xinlifoobar/dev/xinli/stat_perf_timestamp
xinlifoobar Jun 1, 2024
acd0084
Add exhaustive match
alamb Jun 1, 2024
844b2a5
Merge remote-tracking branch 'origin' into dev/xinli/stat_perf
xinlifoobar Jun 5, 2024
c6aa31c
Update latest datatypes
xinlifoobar Jun 5, 2024
4313fff
fix bad comment
xinlifoobar Jun 5, 2024
4662432
Remove duplications using paste
xinlifoobar Jun 5, 2024
1bcc5e3
Fix comment
xinlifoobar Jun 5, 2024
d7e2b55
Merge remote-tracking branch 'origin' into dev/xinli/stat_perf
xinlifoobar Jun 5, 2024
1723daa
Merge remote-tracking branch 'apache/main' into dev/xinli/stat_perf
alamb Jun 5, 2024
fbfb611
Update Cargo.lock
alamb Jun 5, 2024
0dd201a
fix docs
alamb Jun 5, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 22 additions & 15 deletions datafusion-cli/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions datafusion/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@ num_cpus = { workspace = true }
object_store = { workspace = true }
parking_lot = { workspace = true }
parquet = { workspace = true, optional = true, default-features = true }
paste = "1.0.15"
pin-project-lite = "^0.2.7"
rand = { workspace = true }
sqlparser = { workspace = true }
Expand Down
Loading