-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
1 parent
e073e76
commit 4b07409
Showing
7 changed files
with
273 additions
and
77 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
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 |
---|---|---|
@@ -1,10 +1,24 @@ | ||
# Exasol Driver go 1.0.9, released 2024-??-?? | ||
# Exasol Driver go 1.0.9, released 2024-06-28 | ||
|
||
Code name: | ||
Code name: Fix reading int values | ||
|
||
## Summary | ||
|
||
## Features | ||
This release fixes an issue when calling `rows.Scan(&result)` with an int value. This failed for large values like 100000000 with the following error: | ||
|
||
* ISSUE_NUMBER: description | ||
``` | ||
sql: Scan error on column index 0, name "COL": converting driver.Value type float64 ("1e+08") to a int64: invalid syntax | ||
``` | ||
|
||
Please note that reading non-integer numbers like `1.1` into a `int64` variable will still fail with the following error message: | ||
|
||
``` | ||
sql: Scan error on column index 0, name "COL": converting driver.Value type string ("1.1") to a int64: invalid syntax | ||
``` | ||
|
||
The release also now returns the correct error from `rows.Err()`. Before, this only returned `driver.ErrBadConn`. | ||
|
||
## Bugfixes | ||
|
||
* #113: Fixed `Scan()` with large integer numbers | ||
* #111: Return correct error from `rows.Err()` |
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
Oops, something went wrong.