Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions spanner/src/pg_create_database.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

namespace Google\Cloud\Samples\Spanner;

// [START spanner_create_postgres_database]
// [START spanner_postgresql_create_database]
use Google\Cloud\Spanner\Admin\Database\V1\Client\DatabaseAdminClient;
use Google\Cloud\Spanner\Admin\Database\V1\CreateDatabaseRequest;
use Google\Cloud\Spanner\Admin\Database\V1\DatabaseDialect;
Expand Down Expand Up @@ -86,7 +86,7 @@ function pg_create_database(string $projectId, string $instanceId, string $datab
printf('Created database %s with dialect %s on instance %s' . PHP_EOL,
$databaseId, $dialect, $instanceId);
}
// [END spanner_create_postgres_database]
// [END spanner_postgresql_create_database]

// The following 2 lines are only needed to run the samples
require_once __DIR__ . '/../../testing/sample_helpers.php';
Expand Down