Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Overflow ao realizar cálculo do offset na paginação #20

Open
VJPbr opened this issue Nov 13, 2024 · 0 comments
Open

Overflow ao realizar cálculo do offset na paginação #20

VJPbr opened this issue Nov 13, 2024 · 0 comments
Labels
bug Something isn't working

Comments

@VJPbr
Copy link

VJPbr commented Nov 13, 2024

Contexto

A lib é utilizada no projeto do JE, em um teste realizado pelo QA foi descoberto um problema no cálculo do offset.

Descrição

Em PageSpec:37:

public int getOffset() {
  return this.pageNumber * this.pageSize;
}

Quando o pageNumber é na ordem de 7 dígitos (ex: 9999999), e o pageSize 2000 (valor máximo limitado pelo spring), ocorre um overflow nesse cálculo e o retorno é negativo, entretanto, o offset não pode ser negativo.

Sugestão

Após análise feita pela equipe, entendemos que o retorno pode ser um long, evitando esse problema:

public long getOffset() {
  return this.pageNumber.longValue() * this.pageSize;
}
@VJPbr VJPbr added the bug Something isn't working label Nov 13, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant