From f53ef21d17a3f1cb05ada711611997d870bc972e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Vo=C5=99=C3=AD=C5=A1ek?= Date: Sun, 2 Jan 2022 14:32:58 +0100 Subject: [PATCH] skip parse overflow --- tests/ScopeTest.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/ScopeTest.php b/tests/ScopeTest.php index da71d10555..8325d6fae9 100644 --- a/tests/ScopeTest.php +++ b/tests/ScopeTest.php @@ -285,6 +285,8 @@ public function testConditionOnReferencedRecords(): void // not supported because of limitation/issue in Sqlite, the generated query fails // with error: "parser stack overflow" $user->addCondition('Tickets/user/country_id/Users/country_id/Users/name', '!=', null); // should be always true + } else { + return; // TODO fix "parser stack overflow" } $this->assertEquals(2, $user->action('count')->getOne());