Skip to content

Commit

Permalink
fix string
Browse files Browse the repository at this point in the history
  • Loading branch information
zajca committed Feb 5, 2025
1 parent 627d548 commit c42ea82
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1534,7 +1534,7 @@ public function getBigQueryClient(array $externalCredentials): BigQueryClient
'requestTimeout' => 120,
'retries' => 10,
'location' => $this->region,
], 'sapiTest');
], 'sapitest');
}

private function createExternalTable(WorkspaceBackend $db, string $schemaName): void
Expand Down
2 changes: 1 addition & 1 deletion tests/Backend/WorkspaceConnectionTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ private function getDbConnectionBigquery(array $connection): BigQueryClient
'restRetryFunction' => Retry::getRestRetryFunction(new NullLogger()),
'requestTimeout' => 120,
'retries' => 10,
], 'sapiTest');
], 'sapitest');

$bqClient->runQuery(
$bqClient->query('SELECT SESSION_USER() AS USER'),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public function __construct(array $workspace, int $retriesCount)
'restRetryFunction' => Retry::getRestRetryFunction(new NullLogger()),
'requestTimeout' => 120,
'retries' => $retriesCount,
], 'sapiTest');
], 'sapitest');

$this->bqClient = $bqClient;
$this->schema = $workspace['connection']['schema'];
Expand Down

0 comments on commit c42ea82

Please sign in to comment.