2017-07-12 11:05:18 +00:00
|
|
|
// +build pgsql
|
|
|
|
|
|
|
|
// This file was generated by Gosora's Query Generator. Please try to avoid modifying this file, as it might change at any time.
|
|
|
|
package main
|
|
|
|
|
|
|
|
import "log"
|
|
|
|
import "database/sql"
|
2018-10-27 03:21:02 +00:00
|
|
|
import "github.com/Azareal/Gosora/common"
|
2017-07-12 11:05:18 +00:00
|
|
|
|
2017-09-03 04:50:31 +00:00
|
|
|
// nolint
|
2017-11-05 09:55:34 +00:00
|
|
|
type Stmts struct {
|
2018-05-27 09:36:35 +00:00
|
|
|
addForumPermsToForum *sql.Stmt
|
2017-11-05 09:55:34 +00:00
|
|
|
updateEmail *sql.Stmt
|
|
|
|
setTempGroup *sql.Stmt
|
|
|
|
bumpSync *sql.Stmt
|
|
|
|
|
|
|
|
getActivityFeedByWatcher *sql.Stmt
|
|
|
|
getActivityCountByWatcher *sql.Stmt
|
|
|
|
|
|
|
|
Mocks bool
|
|
|
|
}
|
2017-07-12 11:05:18 +00:00
|
|
|
|
2017-09-03 04:50:31 +00:00
|
|
|
// nolint
|
2017-07-12 11:05:18 +00:00
|
|
|
func _gen_pgsql() (err error) {
|
2018-02-19 04:26:01 +00:00
|
|
|
common.DebugLog("Building the generated statements")
|
2017-07-12 11:05:18 +00:00
|
|
|
|
2018-05-27 09:36:35 +00:00
|
|
|
common.DebugLog("Preparing addForumPermsToForum statement.")
|
2018-08-15 07:02:57 +00:00
|
|
|
stmts.addForumPermsToForum, err = db.Prepare("INSERT INTO \"forums_permissions\"(\"gid\",\"fid\",\"preset\",\"permissions\") VALUES (?,?,?,?)")
|
2018-05-27 09:36:35 +00:00
|
|
|
if err != nil {
|
|
|
|
log.Print("Error in addForumPermsToForum statement.")
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2018-02-26 09:07:00 +00:00
|
|
|
common.DebugLog("Preparing updateEmail statement.")
|
2019-12-31 21:57:54 +00:00
|
|
|
stmts.updateEmail, err = db.Prepare("UPDATE \"emails\" SET `email`= ?,`uid`= ?,`validated`= ?,`token`= ? WHERE `email` = ?")
|
2017-07-12 11:05:18 +00:00
|
|
|
if err != nil {
|
2018-02-26 09:07:00 +00:00
|
|
|
log.Print("Error in updateEmail statement.")
|
2017-07-12 11:05:18 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2018-02-26 09:07:00 +00:00
|
|
|
common.DebugLog("Preparing setTempGroup statement.")
|
2019-12-31 21:57:54 +00:00
|
|
|
stmts.setTempGroup, err = db.Prepare("UPDATE \"users\" SET `temp_group`= ? WHERE `uid` = ?")
|
2017-08-27 09:33:45 +00:00
|
|
|
if err != nil {
|
2018-02-26 09:07:00 +00:00
|
|
|
log.Print("Error in setTempGroup statement.")
|
2017-08-27 09:33:45 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2018-02-26 09:07:00 +00:00
|
|
|
common.DebugLog("Preparing bumpSync statement.")
|
2019-12-31 21:57:54 +00:00
|
|
|
stmts.bumpSync, err = db.Prepare("UPDATE \"sync\" SET `last_update`= LOCALTIMESTAMP()")
|
2017-09-10 16:57:22 +00:00
|
|
|
if err != nil {
|
2018-02-26 09:07:00 +00:00
|
|
|
log.Print("Error in bumpSync statement.")
|
2017-09-10 16:57:22 +00:00
|
|
|
return err
|
|
|
|
}
|
2017-07-12 11:05:18 +00:00
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|