mirror of
https://github.com/neilotoole/sq.git
synced 2024-12-20 06:31:32 +03:00
bb4a4edaab
* Switch downloads to use neilotoole/streamcache.
71 lines
1.4 KiB
Go
71 lines
1.4 KiB
Go
// Package lga ("log attribute") holds constants for log attribute
|
|
// names.
|
|
package lga
|
|
|
|
const (
|
|
Action = "action"
|
|
After = "after"
|
|
Alt = "alt"
|
|
Attempts = "attempts"
|
|
Before = "before"
|
|
Catalog = "catalog"
|
|
Cmd = "cmd"
|
|
Col = "column"
|
|
Count = "count"
|
|
Commit = "commit"
|
|
Conn = "conn"
|
|
Copied = "copied"
|
|
Cleanup = "cleanup"
|
|
DB = "db"
|
|
DBType = "db_type"
|
|
Dest = "dest"
|
|
Dir = "dir"
|
|
Driver = "driver"
|
|
Default = "default"
|
|
DefaultTo = "default_to"
|
|
Elapsed = "elapsed"
|
|
Env = "env"
|
|
Err = "error"
|
|
Expected = "expected"
|
|
File = "file"
|
|
From = "from"
|
|
Flag = "flag"
|
|
Handle = "handle"
|
|
Index = "index"
|
|
Key = "key"
|
|
Kind = "kind"
|
|
Loc = "loc"
|
|
Lock = "lock"
|
|
Method = "method"
|
|
Name = "name"
|
|
New = "new"
|
|
Old = "old"
|
|
Opt = "opt"
|
|
Opts = "opts"
|
|
Path = "path"
|
|
Pid = "pid"
|
|
Query = "query"
|
|
Resp = "resp"
|
|
Score = "score"
|
|
Size = "size"
|
|
SLQ = "slq"
|
|
SQL = "sql"
|
|
Src = "src"
|
|
ScanType = "scan_type"
|
|
Stack = "stack"
|
|
Schema = "schema"
|
|
Table = "table"
|
|
Target = "target"
|
|
Timeout = "timeout"
|
|
To = "to"
|
|
Type = "type"
|
|
Line = "line"
|
|
URL = "url"
|
|
Val = "value"
|
|
Via = "via"
|
|
Version = "version"
|
|
Timestamp = "timestamp"
|
|
Written = "written"
|
|
Text = "text"
|
|
)
|