Skip to content

Commit

Permalink
bump version to 0.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pacman82 committed Nov 5, 2022
1 parent 0653311 commit 338d2f6
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 2 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 = "0.13.3"
version = "0.14.0"
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

## 0.14.0

* Time(p) is mapped to Timestamp Nanoseconds for Microsoft SQL Server

## 0.13.3

* Fix: Fixed an issue there setting the `--column-compression-default` to `snappy` did result in the column compression default actually being set to `zstd`.
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ The tool queries the ODBC Data source for type information and maps it to parque
| Integer | Int32 |
| Big Int | Int64 |
| Date | Date |
| Time* | Time Nanoseconds |
| Timestamp(p: 0..3) | Timestamp Milliseconds |
| Timestamp(p >= 4) | Timestamp Microseconds |
| Datetimeoffset(p: 0..3) | Timestamp Milliseconds (UTC) |
Expand All @@ -37,6 +38,7 @@ The tool queries the ODBC Data source for type information and maps it to parque
| All others | Utf8 Byte Array |

`p` is short for `precision`. `s` is short for `scale`. Intervals are inclusive.
* Time is only supported for Microsoft SQL Server

## Installation

Expand Down

0 comments on commit 338d2f6

Please sign in to comment.