(store *sqlOfflineStore, def TrainingSetDef, tableName string, labelName string)
| 154 | } |
| 155 | |
| 156 | func (q redshiftSQLQueries) trainingSetUpdate(store *sqlOfflineStore, def TrainingSetDef, tableName string, labelName string) error { |
| 157 | return q.trainingSetQuery(store, def, tableName, labelName, true) |
| 158 | } |
| 159 | |
| 160 | func (q redshiftSQLQueries) trainingSetQuery(store *sqlOfflineStore, def TrainingSetDef, tableName string, labelName string, isUpdate bool) error { |
| 161 | columns := make([]string, 0) |
nothing calls this directly
no test coverage detected