Skip to content

Commit

Permalink
bump version to 2.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
pacman82 committed Sep 17, 2023
1 parent 6a9f52b commit 25c6034
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "odbc2parquet"
version = "2.0.2"
version = "2.0.3"
authors = ["Markus Klein"]
edition = "2021"
repository = "https://github.com/pacman82/odbc2parquet"
Expand Down
4 changes: 4 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 2.0.3

* Fix: Then fetching relational type `TINYINT`, the driver is queried for the signess of the column. The result is now reflected in the logical type written into parquet. In the past the `TINYINT` has always been assumed to be signed, even if the ODBC driver would have described the column as unsigned.

## 2.0.2

* Fix: The `--help` subcommand for query wrongly listed `bit-packed` as supported.
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ The tool queries the ODBC Data source for type information and maps it to parque
| Real | Float |
| Float(p: 0..24) | Float |
| Float(p >= 25) | Double |
| Tiny Integer | Int8 |
| Tiny Integer Signed | Int8 Signed |
| Tiny Integer Unsigned | Int8 Unsigned |
| Small Integer | Int16 |
| Integer | Int32 |
| Big Int | Int64 |
Expand Down

0 comments on commit 25c6034

Please sign in to comment.