sq/libsq/core/lg/lga/lga.go
Neil O'Toole f0aa65791b
#199: More config/options work (#215)
* CHANGELOG text clarification

* Dialing in config/options

* Yet more dialing in of config/options

* Refactor output writers

* YAML output for more commands
2023-05-05 08:32:50 -06:00

45 lines
890 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"
Env = "env"
Err = "error"
From = "from"
Flag = "flag"
Handle = "handle"
Index = "index"
Key = "key"
Kind = "kind"
Loc = "loc"
Opts = "opts"
Path = "path"
Pid = "pid"
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"
)