(t *testing.T, db *DB, bucket string, key int, start, end int, isLeft bool)
| 27 | ) |
| 28 | |
| 29 | func pushDataByStartEnd(t *testing.T, db *DB, bucket string, key int, start, end int, isLeft bool) { |
| 30 | for i := start; i <= end; i++ { |
| 31 | txPush(t, db, bucket, testutils.GetTestBytes(key), testutils.GetTestBytes(i), isLeft, nil, nil) |
| 32 | } |
| 33 | } |
| 34 | |
| 35 | func pushDataByValues(t *testing.T, db *DB, bucket string, key int, isLeft bool, values ...int) { |
| 36 | for _, v := range values { |
no test coverage detected