(key []byte)
| 81 | require.NoError(t, testutil.RetryMutation(dg, mu)) |
| 82 | } |
| 83 | func getOrCreate(key []byte) *posting.List { |
| 84 | l, err := posting.GetNoStore(key, math.MaxUint64) |
| 85 | x.Checkf(err, "While calling posting.Get") |
| 86 | return l |
| 87 | } |
| 88 | |
| 89 | func populateGraph(t *testing.T) { |
| 90 | // Add uid edges : predicate neightbour. |
no test coverage detected