0
0
mirror of https://github.com/mattn/go-sqlite3.git synced 2024-11-07 05:18:43 +00:00
go-sqlite3/sqlite3_opt_math_functions_test.go
Yasuhiro Matsumoto 1f0dc0a0ef go fmt ./...
2024-01-25 22:55:22 +09:00

31 lines
567 B
Go

//go:build sqlite_math_functions
// +build sqlite_math_functions
package sqlite3
import (
"database/sql"
"testing"
)
func TestMathFunctions(t *testing.T) {
db, err := sql.Open("sqlite3", ":memory:")
if err != nil {
t.Fatal("Failed to open database:", err)
}
defer db.Close()
queries := []string{
`SELECT acos(1)`,
`SELECT log(10, 100)`,
`SELECT power(2, 2)`,
}
for _, query := range queries {
var result float64
if err := db.QueryRow(query).Scan(&result); err != nil {
t.Errorf("invoking math function query %q: %v", query, err)
}
}
}