summaryrefslogtreecommitdiffstats
path: root/store/sql_post_store.go
diff options
context:
space:
mode:
authorHarrison Healey <harrisonmhealey@gmail.com>2015-09-29 17:33:16 -0400
committerHarrison Healey <harrisonmhealey@gmail.com>2015-09-29 17:33:16 -0400
commit5e9dccc464590ffe6e05041b76192bb6f12e30c6 (patch)
treeb3c76aa86bdb4e50bc7c3f3456cfa78e26f38c25 /store/sql_post_store.go
parentfb9fe1995ca7502bea23e1ab7082e8c8757251fb (diff)
parent8fadea44debd00c1babd12bff9eb2dd0a5d99370 (diff)
downloadchat-5e9dccc464590ffe6e05041b76192bb6f12e30c6.tar.gz
chat-5e9dccc464590ffe6e05041b76192bb6f12e30c6.tar.bz2
chat-5e9dccc464590ffe6e05041b76192bb6f12e30c6.zip
Merge pull request #865 from mattermost/PLT-404
PLT-404 adding basic error checking to config file.
Diffstat (limited to 'store/sql_post_store.go')
-rw-r--r--store/sql_post_store.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/store/sql_post_store.go b/store/sql_post_store.go
index 21e8e9d00..668f45fbb 100644
--- a/store/sql_post_store.go
+++ b/store/sql_post_store.go
@@ -418,7 +418,7 @@ func (s SqlPostStore) Search(teamId string, userId string, terms string, isHasht
var posts []*model.Post
- if utils.Cfg.SqlSettings.DriverName == "postgres" {
+ if utils.Cfg.SqlSettings.DriverName == model.DATABASE_DRIVER_POSTGRES {
// Parse text for wildcards
if wildcard, err := regexp.Compile("\\*($| )"); err == nil {
@@ -451,7 +451,7 @@ func (s SqlPostStore) Search(teamId string, userId string, terms string, isHasht
result.Err = model.NewAppError("SqlPostStore.Search", "We encounted an error while searching for posts", "teamId="+teamId+", err="+err.Error())
}
- } else if utils.Cfg.SqlSettings.DriverName == "mysql" {
+ } else if utils.Cfg.SqlSettings.DriverName == model.DATABASE_DRIVER_MYSQL {
searchQuery := fmt.Sprintf(`SELECT
*
FROM