| 121 | } |
| 122 | |
| 123 | string SafeDebugPath(const string& path) { |
| 124 | if (path.empty() || path.compare(0, 5, "gs://") == 0 || |
| 125 | path.compare(0, 11, "bigstore://") == 0) { |
| 126 | return path; |
| 127 | } |
| 128 | LOG(WARNING) << "Invalid config path (will be dropped): " << path; |
| 129 | return string(); |
| 130 | } |
| 131 | |
| 132 | Status MakeOutput(const RefPtr<XRTTupleAllocation>& output, int64 index, |
| 133 | RefPtr<XRTTupleAllocation>* result) { |
no test coverage detected