sql.go 378 B

123456789
  1. package trace
  2. type SQL struct {
  3. Timestamp string `json:"timestamp"` // 时间,格式:2006-01-02 15:04:05
  4. Stack string `json:"stack"` // 文件地址和行号
  5. SQL string `json:"sql"` // SQL 语句
  6. Rows int64 `json:"rows_affected"` // 影响行数
  7. CostSeconds float64 `json:"cost_seconds"` // 执行时长(单位秒)
  8. }