first commit
This commit is contained in:
9
pkg/trace/sql.go
Normal file
9
pkg/trace/sql.go
Normal file
@ -0,0 +1,9 @@
|
||||
package trace
|
||||
|
||||
type SQL struct {
|
||||
Timestamp string `json:"timestamp"` // 时间,格式:2006-01-02 15:04:05
|
||||
Stack string `json:"stack"` // 文件地址和行号
|
||||
SQL string `json:"sql"` // SQL 语句
|
||||
Rows int64 `json:"rows_affected"` // 影响行数
|
||||
CostSeconds float64 `json:"cost_seconds"` // 执行时长(单位秒)
|
||||
}
|
Reference in New Issue
Block a user