From 9e6bafb80e36358d081bd9990511f0828c6efac8 Mon Sep 17 00:00:00 2001 From: Tigrov Date: Sat, 14 Oct 2023 17:40:03 +0700 Subject: [PATCH] Revert "Apply Rector changes (CI)" This reverts commit a127e1f6b1c6532c36b67301cfe2d2387bcc5b45. --- tests/QueryTest.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/QueryTest.php b/tests/QueryTest.php index c8e56f8b..83645f2a 100644 --- a/tests/QueryTest.php +++ b/tests/QueryTest.php @@ -92,6 +92,8 @@ public function testWithQuery() ) { self::markTestSkipped('CTE not supported in MySQL versions below 8.0.0'); } + + parent::testWithQuery(); } public function testWithQueryRecursive() @@ -104,5 +106,7 @@ public function testWithQueryRecursive() ) { self::markTestSkipped('CTE not supported in MySQL versions below 8.0.0'); } + + parent::testWithQueryRecursive(); } }