if I request for a Page of results from my DB without any ordering provided
val page1 = repository.findAll(PageRequest.of(1,10))
val page2 = repository.findAll(PageRequest.of(2,10))
Could page1 and page2 contain the same elements since I didn't specify an order? Or could page1 contain different elements in different invocations despite the DB contents not changing?