(scopeName, collectionName string)
| 234 | } |
| 235 | |
| 236 | func (h *handler) addCollectionLogContext(scopeName, collectionName string) { |
| 237 | if scopeName != "" && collectionName != "" { |
| 238 | h.rqCtx = base.CollectionLogCtx(h.ctx(), scopeName, collectionName) |
| 239 | } |
| 240 | } |
| 241 | |
| 242 | // ParseKeyspace will return a db, scope and collection for a given '.' separated keyspace string. |
| 243 | // Returns nil for scope and/or collection if not present in the keyspace string. |
no test coverage detected