-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from fizmat/correctness
Fix a bug of defining chunks in bytes then using them in utf8 text mode
- Loading branch information
Showing
4 changed files
with
28 additions
and
21 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 |
---|---|---|
|
@@ -13,3 +13,9 @@ measurements*.txt | |
|
||
# DuckDB files | ||
*.ddb | ||
|
||
# Files for comparing results | ||
duckdb.txt | ||
polars.txt | ||
pypy.txt | ||
python.txt |
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
python calculateAverage.py > python.txt | ||
python calculateAveragePypy.py > pypy.txt | ||
python calculateAveragePolars.py > polars.txt | ||
python calculateAverageDuckDB.py > duckdb.txt | ||
git diff --no-index --word-diff=porcelain python.txt pypy.txt | ||
git diff --no-index --word-diff=porcelain python.txt polars.txt | ||
git diff --no-index --word-diff=porcelain python.txt duckdb.txt |