mirror of
https://github.com/grafana/grafana.git
synced 2025-07-31 07:32:13 +08:00
fix(postgres): Dashboard search is now case insensitive when using Postgres, fixes #1896
This commit is contained in:
@ -28,6 +28,10 @@ func (db *Postgres) QuoteStr() string {
|
||||
return "\""
|
||||
}
|
||||
|
||||
func (b *Postgres) LikeStr() string {
|
||||
return "ILIKE"
|
||||
}
|
||||
|
||||
func (db *Postgres) AutoIncrStr() string {
|
||||
return ""
|
||||
}
|
||||
|
Reference in New Issue
Block a user