Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func RenderQueryStatment ¶
Types ¶
type InputQueryFile ¶
type InputQueryFile struct {
Statements []QueryStatement `json:"statements"`
MetaData MetaData `json:"metadata"`
}
func ReadTargetFiles ¶
func ReadTargetFiles(directory string) ([]*InputQueryFile, error)
func (*InputQueryFile) Decode ¶
func (f *InputQueryFile) Decode(b []byte) error
type OutputFile ¶
type OutputFile struct {
MetaData OutputMetaData `json:"metadata"`
Schema []OutputSchema `json:"schema"`
}
type OutputMetaData ¶
type OutputSchema ¶
type OutputSchema struct {
Name string `json:"name"`
SQL string `json:"sql"`
Min float64 `json:"min"`
Max float64 `json:"max"`
Median float64 `json:"median"`
StdDev float64 `json:"std_dev"`
ReadRow uint64 `json:"read_row"`
ReadByte uint64 `json:"read_byte"`
Time []float64 `json:"time"`
Error []string `json:"error"`
Mean float64 `json:"mean"`
}
type QueryStatement ¶
Click to show internal directories.
Click to hide internal directories.