-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathShowCreateTable.php
More file actions
32 lines (26 loc) · 825 Bytes
/
ShowCreateTable.php
File metadata and controls
32 lines (26 loc) · 825 Bytes
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
<?php
declare(strict_types=1);
namespace SimPod\ClickHouseClient\Snippet;
use Psr\Http\Client\ClientExceptionInterface;
use SimPod\ClickHouseClient\Client\ClickHouseClient;
use SimPod\ClickHouseClient\Exception\ServerError;
use SimPod\ClickHouseClient\Format\JsonEachRow;
final readonly class ShowCreateTable
{
/**
* @throws ClientExceptionInterface
* @throws ServerError
*/
public static function run(ClickHouseClient $clickHouseClient, string $tableName): string
{
/** @var JsonEachRow<array{statement: string}> $format */
$format = new JsonEachRow();
$output = $clickHouseClient->select(
<<<CLICKHOUSE
SHOW CREATE TABLE $tableName
CLICKHOUSE,
$format,
);
return $output->data[0]['statement'];
}
}