+ Add vendor of sqlparser.
This commit is contained in:
+27
@@ -0,0 +1,27 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace PhpMyAdmin\SqlParser\Tests\Parser;
|
||||
|
||||
use PhpMyAdmin\SqlParser\Tests\TestCase;
|
||||
|
||||
class ExplainStatementTest extends TestCase
|
||||
{
|
||||
/**
|
||||
* @param mixed $test
|
||||
*
|
||||
* @dataProvider explainProvider
|
||||
*/
|
||||
public function testExplain($test): void
|
||||
{
|
||||
$this->runParserTest($test);
|
||||
}
|
||||
|
||||
public function explainProvider(): array
|
||||
{
|
||||
return [
|
||||
['parser/parseExplain'],
|
||||
];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user