mirror of
https://github.com/neilotoole/sq.git
synced 2024-12-20 22:51:35 +03:00
5e31da4644
* Refactor config and options.
42 lines
832 B
Go
42 lines
832 B
Go
// Package lga ("log attribute") holds constants for log attribute
|
|
// names.
|
|
package lga
|
|
|
|
const (
|
|
Alt = "alt"
|
|
Cmd = "cmd"
|
|
Col = "column"
|
|
Count = "count"
|
|
Commit = "commit"
|
|
Cleanup = "cleanup"
|
|
DB = "db"
|
|
DBType = "db_type"
|
|
Driver = "driver"
|
|
DefaultTo = "default_to"
|
|
Elapsed = "elapsed"
|
|
Err = "error"
|
|
From = "from"
|
|
Handle = "handle"
|
|
Index = "index"
|
|
Key = "key"
|
|
Kind = "kind"
|
|
Loc = "loc"
|
|
Opts = "opts"
|
|
Path = "path"
|
|
Query = "query"
|
|
SLQ = "slq"
|
|
SQL = "sql"
|
|
Src = "src"
|
|
ScanType = "scan_type"
|
|
Table = "table"
|
|
Target = "target"
|
|
To = "to"
|
|
Type = "type"
|
|
Line = "line"
|
|
Val = "value"
|
|
Via = "via"
|
|
Version = "version"
|
|
Timestamp = "timestamp"
|
|
Text = "text"
|
|
)
|