You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
318 B

package ES7SqlUtil
type ESSqlResult struct {
Columns []ESSqlColumn `json:"columns"`
Rows [][]interface{} `json:"rows"`
Cursor string `json:"cursor"`
}
type ESSqlColumn struct {
Name string `json:"name"`
Type string `json:"type"`
}
//type ESSqlRow struct {
//
// Item []interface{} `json:"rows"`
//}