From be0e5691a8d2b3ed4fcec36bd273e3c66d62ed47 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Vo=C5=99=C3=AD=C5=A1ek?= Date: Fri, 26 Nov 2021 18:22:31 +0100 Subject: [PATCH] x --- tests/Persistence/SqlTest.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/Persistence/SqlTest.php b/tests/Persistence/SqlTest.php index 3c24d72cd2..9948bcf3c7 100644 --- a/tests/Persistence/SqlTest.php +++ b/tests/Persistence/SqlTest.php @@ -282,7 +282,9 @@ public function testSameRowFieldStability(): void $randRow0 = $export[0]['rand']; $randRow1 = $export[1]['rand']; $this->assertNotSame($randRow0, $randRow1); // $this->assertGreaterThan($randRow0, $randRow1); - // $this->assertNotSame($randRow0, $export[0]['rand_independent']); // TODO this can be the same, depending on how we implement it + // TODO this can be the same, depending on how we implement it + // already stable under some circumstances on PostgreSQL http://sqlfiddle.com/#!17/4b040/4 + // $this->assertNotSame($randRow0, $export[0]['rand_independent']); $this->assertSame($randRow0, $export[0]['rand2']); $this->assertSame($randRow1, $export[1]['rand2']);