()
| 145 | } |
| 146 | |
| 147 | func dropAll() error { |
| 148 | op := `{"drop_all": true}` |
| 149 | _, _, err := runWithRetries("PUT", "", addr+"/alter", op) |
| 150 | return err |
| 151 | } |
| 152 | |
| 153 | func deletePredicate(pred string) error { |
| 154 | op := `{"drop_attr": "` + pred + `"}` |
no test coverage detected