-
-
Notifications
You must be signed in to change notification settings - Fork 105
/
Copy pathWithKeyword.php
53 lines (39 loc) · 1.01 KB
/
WithKeyword.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?php
declare(strict_types=1);
namespace PhpMyAdmin\SqlParser\Components;
use PhpMyAdmin\SqlParser\Component;
use PhpMyAdmin\SqlParser\Parser;
use PhpMyAdmin\SqlParser\Parsers\ArrayObjs;
use RuntimeException;
/**
* `WITH` keyword builder.
*/
final class WithKeyword implements Component
{
/** @var ArrayObj[] */
public array $columns = [];
public Parser|null $statement = null;
public function __construct(public string $name)
{
}
public function build(): string
{
if (! isset($this->statement)) {
throw new RuntimeException('No statement inside WITH');
}
$str = $this->name;
if ($this->columns) {
$str .= ArrayObjs::buildAll($this->columns);
}
$str .= ' AS (';
foreach ($this->statement->statements as $statement) {
$str .= $statement->build();
}
$str .= ')';
return $str;
}
public function __toString(): string
{
return $this->build();
}
}