We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1424371 commit 50c282bCopy full SHA for 50c282b
tests/Cases/PgSQL/PgSQLTest.php
@@ -13,6 +13,7 @@
13
namespace Cases\PgSQL;
14
15
use Hyperf\DB\DB;
16
+use HyperfTest\Database\PgSQL\Stubs\SwooleVersionStub;
17
use HyperfTest\DB\Cases\AbstractTestCase;
18
use PHPUnit\Framework\Attributes\CoversNothing;
19
@@ -25,6 +26,7 @@ class PgSQLTest extends AbstractTestCase
25
26
{
27
public function testExecute()
28
29
+ SwooleVersionStub::skipV6();
30
$res = DB::connection('pgsql')->execute('INSERT INTO public.users (email, name) VALUES (?, ?);', ['[email protected]', 'limx']);
31
32
$this->assertGreaterThan(0, $res);
0 commit comments