(store *sqlOfflineStore, def TrainingSetDef, tableName string, labelName string)
| 140 | } |
| 141 | |
| 142 | func (q postgresSQLQueries) trainingSetUpdate(store *sqlOfflineStore, def TrainingSetDef, tableName string, labelName string) error { |
| 143 | return q.trainingSetQuery(store, def, tableName, labelName, true) |
| 144 | } |
| 145 | |
| 146 | func (q postgresSQLQueries) trainingSetQuery(store *sqlOfflineStore, def TrainingSetDef, tableName string, labelName string, isUpdate bool) error { |
| 147 | columns := make([]string, 0) |
nothing calls this directly
no test coverage detected