Skip to content

Commit 13572bb

Browse files
shogo82148tz70s
authored andcommitted
fix compile error of connCheck.go (go-sql-driver#1048)
* fix compile error of connCheck.go * remove "appengine" build tag
1 parent 3670097 commit 13572bb

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

conncheck.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
// License, v. 2.0. If a copy of the MPL was not distributed with this file,
77
// You can obtain one at http://mozilla.org/MPL/2.0/.
88

9-
// +build !windows,!appengine
9+
// +build linux darwin
1010

1111
package mysql
1212

conncheck_dummy.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
// License, v. 2.0. If a copy of the MPL was not distributed with this file,
77
// You can obtain one at http://mozilla.org/MPL/2.0/.
88

9-
// +build windows appengine
9+
// +build !linux,!darwin
1010

1111
package mysql
1212

conncheck_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
// License, v. 2.0. If a copy of the MPL was not distributed with this file,
77
// You can obtain one at http://mozilla.org/MPL/2.0/.
88

9-
// +build go1.10,!windows
9+
// +build linux darwin
1010

1111
package mysql
1212

0 commit comments

Comments
 (0)