-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCurrentDatabase.php
More file actions
32 lines (26 loc) · 823 Bytes
/
CurrentDatabase.php
File metadata and controls
32 lines (26 loc) · 823 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 class CurrentDatabase
{
/**
* @throws ClientExceptionInterface
* @throws ServerError
*/
public static function run(ClickHouseClient $clickHouseClient): string
{
/** @var JsonEachRow<array{database: string}> $format */
$format = new JsonEachRow();
$currentDatabase = $clickHouseClient->select(
<<<'CLICKHOUSE'
SELECT currentDatabase() AS database
CLICKHOUSE,
$format,
);
return $currentDatabase->data[0]['database'];
}
}