forked from GoogleCloudPlatform/ruby-docs-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspanner_postgresql_add_column.rb
48 lines (38 loc) · 1.81 KB
/
spanner_postgresql_add_column.rb
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
# Copyright 2022 Google, Inc
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# [START spanner_postgresql_add_column]
require "google/cloud/spanner"
require "google/cloud/spanner/admin/database"
def spanner_postgresql_add_column project_id:, instance_id:, database_id:
# project_id = "Your Google Cloud project ID"
# instance_id = "Your Spanner instance ID"
# database_id = "Your Spanner database ID"
db_admin_client = Google::Cloud::Spanner::Admin::Database.database_admin project: project_id
db_path = db_admin_client.database_path project: project_id,
instance: instance_id,
database: database_id
add_column_query = "ALTER TABLE Singers ADD COLUMN Age INTEGER"
job = db_admin_client.update_database_ddl database: db_path,
statements: [add_column_query]
job.wait_until_done!
if job.error?
puts "Error while adding column. Code: #{job.error.code}. Message: #{job.error.message}"
raise GRPC::BadStatus.new(job.error.code, job.error.message)
end
puts "Added Age column to Singers table in datbase #{database_id}"
end
# [END spanner_postgresql_add_column]
if $PROGRAM_NAME == __FILE__
spanner_postgresql_add_column project_id: ARGV.shift, instance_id: ARGV.shift, database_id: ARGV.shift
end