Skip to content

Sorting on unpaged Pageable is not applied in 3.3.x series #3778

@wilx

Description

@wilx

This is about #3476 on 3.3.x. As can be seen here

public Page<T> findAll(Pageable pageable) {
if (pageable.isUnpaged()) {
return new PageImpl<>(findAll());
}
return findAll((Specification<T>) null, pageable);
}

A change set like the 38a11d0 is missing in the 3.3.x series.

Please fix the issue on 3.3.x as well.

Metadata

Metadata

Assignees

Labels

status: supersededAn issue that has been superseded by another

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions