if params.BatchSize > MaxMergeBatchSize {
fmt.Sprintf("Batch size, %d, must be less than or equal to %d", params.BatchSize, MaxMergeBatchSize),
errorTypeInvalidRequest,
ErrMergeBatchSizeTooLarge,
)
}
if params.BatchSize == 0 {