Last active
March 3, 2016 00:11
-
-
Save pib/f8c9a4e153e6d226d2ee to your computer and use it in GitHub Desktop.
Demonstration of float scan bug in github.com/go-sql-driver/mysql
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
package main | |
import ( | |
"database/sql" | |
"fmt" | |
"log" | |
_ "github.com/go-sql-driver/mysql" | |
) | |
func main() { | |
db, err := sql.Open("mysql", "root:@tcp(localhost:3306)/float_bug") | |
if err != nil { | |
log.Fatal(err) | |
} | |
fmt.Println("With no placeholders:") | |
printRows(db.Query("SELECT id, lat, lon FROM lat_lons WHERE id IN(1, 2)")) | |
fmt.Println("\nWith placeholder:") | |
printRows(db.Query("SELECT id, lat, lon FROM lat_lons WHERE id IN(?, ?)", 1, 2)) | |
} | |
func printRows(rows *sql.Rows, err error) { | |
if err != nil { | |
log.Fatal(err) | |
} | |
var ( | |
id int | |
lat, lon *float64 | |
) | |
for rows.Next() { | |
if err = rows.Scan(&id, &lat, &lon); err != nil { | |
log.Fatal(err) | |
} | |
fmt.Println(id, *lat, *lon) | |
} | |
rows.Close() | |
} |
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
CREATE TABLE `lat_lons` ( | |
`id` int, | |
`lat` float, | |
`lon` float | |
); | |
INSERT INTO `lat_lons` VALUES (1, 33.9534, -117.396); | |
INSERT INTO `lat_lons` VALUES (2, 35.7942, -115.401); |
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
With no placeholders: | |
1 33.9534 -117.396 | |
2 35.7942 -115.401 | |
With placeholder: | |
1 33.953399658203125 -117.39600372314453 | |
2 35.7942008972168 -115.4010009765625 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment