Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix missing fmt argument in error message #111

Merged
merged 1 commit into from Nov 3, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/insert.rs
Expand Up @@ -526,7 +526,8 @@ fn parquet_type_to_odbc_buffer_desc(
PhysicalType::INT96 => bail!(
"'{}' is a column of type INT96. This tool currently offers no support for that type. \
If you feel that it should, please raise an issue at \
https://github.com/pacman82/odbc2parquet/issues."
https://github.com/pacman82/odbc2parquet/issues.",
name,
),
PhysicalType::FLOAT => match lt {
ConvertedType::NONE => (BufferKind::F32, FloatType::map_identity(nullable)),
Expand Down