Skip to content

Commit

Permalink
feat: update scenario to column repository
Browse files Browse the repository at this point in the history
Signed-off-by: Otavio Santana <otaviopolianasantana@gmail.com>
  • Loading branch information
otaviojava committed Dec 28, 2023
1 parent 4dff750 commit ee172b9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -804,7 +804,7 @@ void shouldExecuteCustomRepository(){
});
}

interface BaseQuery<T> {
public interface BaseQuery<T> {

List<T> findByNameLessThan(String name);

Expand All @@ -813,7 +813,7 @@ default List<T> ada() {
}
}

interface PersonRepository extends PageableRepository<Person, Long>, BaseQuery<Person>, PersonStatisticRepository {
public interface PersonRepository extends PageableRepository<Person, Long>, BaseQuery<Person>, PersonStatisticRepository {

List<Person> findByActiveTrue();

Expand Down

0 comments on commit ee172b9

Please sign in to comment.