Skip to content

Commit 831d968

Browse files
authored
Support Lateral Join to Hyperf\Database\Query\Builder (#6774)
1 parent 50c282b commit 831d968

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/Cases/PgSQL/PgSQLTest.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
namespace Cases\PgSQL;
1414

1515
use Hyperf\DB\DB;
16-
use HyperfTest\Database\PgSQL\Stubs\SwooleVersionStub;
1716
use HyperfTest\DB\Cases\AbstractTestCase;
1817
use PHPUnit\Framework\Attributes\CoversNothing;
18+
use PHPUnit\Framework\Attributes\RequiresPhpExtension;
1919

2020
/**
2121
* @internal
@@ -24,9 +24,9 @@
2424
#[CoversNothing]
2525
class PgSQLTest extends AbstractTestCase
2626
{
27+
#[RequiresPhpExtension('swoole', '< 6.0')]
2728
public function testExecute()
2829
{
29-
SwooleVersionStub::skipV6();
3030
$res = DB::connection('pgsql')->execute('INSERT INTO public.users (email, name) VALUES (?, ?);', ['[email protected]', 'limx']);
3131

3232
$this->assertGreaterThan(0, $res);

0 commit comments

Comments
 (0)