(op *api.Operation)
| 2428 | } |
| 2429 | |
| 2430 | func isDropAll(op *api.Operation) bool { |
| 2431 | if op.DropAll || op.DropOp == api.Operation_ALL { |
| 2432 | return true |
| 2433 | } |
| 2434 | return false |
| 2435 | } |
| 2436 | |
| 2437 | // isDropOperation reports whether op is any form of drop (all, data, attr, or |
| 2438 | // type) rather than a schema change. |
no outgoing calls
no test coverage detected