test
This commit is contained in:
parent
01d5ce3f2b
commit
f6f5f6108c
7
sql.go
7
sql.go
@ -199,6 +199,7 @@ func getObjSubTypeId(objId int64) (int64, error) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func insertMsgReport(objId int64, war_date int32, atk int32, def int32, exp int32, gold int32, stock int32, crit bool, stamina bool) error {
|
func insertMsgReport(objId int64, war_date int32, atk int32, def int32, exp int32, gold int32, stock int32, crit bool, stamina bool) error {
|
||||||
|
/*
|
||||||
objSubTypeId, err := getObjSubTypeId(objId)
|
objSubTypeId, err := getObjSubTypeId(objId)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
@ -206,7 +207,7 @@ func insertMsgReport(objId int64, war_date int32, atk int32, def int32, exp int3
|
|||||||
if objSubTypeId != objSubTypeMessageUnprocess {
|
if objSubTypeId != objSubTypeMessageUnprocess {
|
||||||
return errors.New("Message is not of type Unknown")
|
return errors.New("Message is not of type Unknown")
|
||||||
}
|
}
|
||||||
/*
|
|
||||||
obj_id BIGINT UNSIGNED NOT NULL
|
obj_id BIGINT UNSIGNED NOT NULL
|
||||||
,war_date TIMESTAMP NOT NULL
|
,war_date TIMESTAMP NOT NULL
|
||||||
,attack SMALLINT UNSIGNED NOT NULL
|
,attack SMALLINT UNSIGNED NOT NULL
|
||||||
@ -216,7 +217,7 @@ func insertMsgReport(objId int64, war_date int32, atk int32, def int32, exp int3
|
|||||||
,exp SMALLINT UNSIGNED NOT NULL
|
,exp SMALLINT UNSIGNED NOT NULL
|
||||||
,stamina TINYINT NOT NULL
|
,stamina TINYINT NOT NULL
|
||||||
,crit TINYINT NOT NULL
|
,crit TINYINT NOT NULL
|
||||||
*/
|
|
||||||
stmt, err := db.Prepare(`INSERT INTO obj_msg_report (obj_id, war_date, attack, defense, gold, stock, exp, stamina, crit)
|
stmt, err := db.Prepare(`INSERT INTO obj_msg_report (obj_id, war_date, attack, defense, gold, stock, exp, stamina, crit)
|
||||||
VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?FROM_UNIXTIME(?), ?);`)
|
VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?FROM_UNIXTIME(?), ?);`)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@ -228,6 +229,6 @@ func insertMsgReport(objId int64, war_date int32, atk int32, def int32, exp int3
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user