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

Tx isolation #74

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion mysql/mysql.go
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ func schedExists(tx *sql.Tx, date time.Time) (result bool, err error) {
// See: https://github.com/go-sql-driver/mysql#dsn-data-source-name
func dsn(host string, port int, user string, password string, dbname string) string {
params := map[string]string{
"tx_isolation": "SERIALIZABLE", // we need serializable transactions for atomic test & set behavior
"transaction_isolation": "SERIALIZABLE", // we need serializable transactions for atomic test & set behavior
"parseTime": "true", // enable us to use sql.Rows.Scan to read time.Time objects from queries
"loc": "UTC", // Scan'd time.Times should be treated as being in UTC time zone
"time_zone": "UTC", // MySQL should interpret DATETIME values as being in UTC
Expand Down