mirror of
https://github.com/grafana/grafana.git
synced 2025-01-18 20:43:26 -06:00
Fixed alerting bug for mysql (#6375)
This commit is contained in:
parent
b45bd07032
commit
b382d17e34
@ -30,7 +30,10 @@ func (db *Mysql) AutoIncrStr() string {
|
||||
}
|
||||
|
||||
func (db *Mysql) BooleanStr(value bool) string {
|
||||
return strconv.FormatBool(value)
|
||||
if value {
|
||||
return "1"
|
||||
}
|
||||
return "0"
|
||||
}
|
||||
|
||||
func (db *Mysql) SqlType(c *Column) string {
|
||||
|
Loading…
Reference in New Issue
Block a user