(db QueryAble)
| 255 | } |
| 256 | |
| 257 | func ShowMasterStatus(db QueryAble) *gosql.Row { |
| 258 | return db.QueryRowContext(context.TODO(), "show master status /*dtle*/") |
| 259 | } |
| 260 | |
| 261 | // queryResultData returns a raw array of rows for a given query, optionally reading and returning column names |
| 262 | func queryResultData(db *gosql.DB, query string, retrieveColumns bool, args ...interface{}) (ResultData, []string, error) { |
no test coverage detected