-
Notifications
You must be signed in to change notification settings - Fork 102
/
schema.js
246 lines (214 loc) · 7.54 KB
/
schema.js
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
/**
* Copyright 2024 Google LLC
* 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.
*/
'use strict';
// creates a database using Database Admin Client
async function createDatabase(instanceID, databaseID, projectID) {
// [START spanner_create_database]
/**
* TODO(developer): Uncomment the following lines before running the sample.
*/
// const projectId = 'my-project-id';
// const instanceId = 'my-instance';
// const databaseId = 'my-database';
// Imports the Google Cloud client library
const {Spanner} = require('@google-cloud/spanner');
// creates a client
const spanner = new Spanner({
projectId: projectID,
});
const databaseAdminClient = spanner.getDatabaseAdminClient();
const createSingersTableStatement = `
CREATE TABLE Singers (
SingerId INT64 NOT NULL,
FirstName STRING(1024),
LastName STRING(1024),
SingerInfo BYTES(MAX),
FullName STRING(2048) AS (ARRAY_TO_STRING([FirstName, LastName], " ")) STORED,
) PRIMARY KEY (SingerId)`;
const createAlbumsTableStatement = `
CREATE TABLE Albums (
SingerId INT64 NOT NULL,
AlbumId INT64 NOT NULL,
AlbumTitle STRING(MAX)
) PRIMARY KEY (SingerId, AlbumId),
INTERLEAVE IN PARENT Singers ON DELETE CASCADE`;
// Creates a new database
try {
const [operation] = await databaseAdminClient.createDatabase({
createStatement: 'CREATE DATABASE `' + databaseID + '`',
extraStatements: [
createSingersTableStatement,
createAlbumsTableStatement,
],
parent: databaseAdminClient.instancePath(projectID, instanceID),
});
console.log(`Waiting for creation of ${databaseID} to complete...`);
await operation.promise();
console.log(`Created database ${databaseID} on instance ${instanceID}.`);
} catch (err) {
console.error('ERROR:', err);
}
// [END spanner_create_database]
}
async function addColumn(instanceId, databaseId, projectId) {
// [START spanner_add_column]
/**
* TODO(developer): Uncomment the following lines before running the sample.
*/
// const projectId = 'my-project-id';
// const instanceId = 'my-instance';
// const databaseId = 'my-database';
// Imports the Google Cloud client library
const {Spanner} = require('@google-cloud/spanner');
// creates a client
const spanner = new Spanner({
projectId: projectId,
});
const databaseAdminClient = spanner.getDatabaseAdminClient();
// Creates a new index in the database
try {
const [operation] = await databaseAdminClient.updateDatabaseDdl({
database: databaseAdminClient.databasePath(
projectId,
instanceId,
databaseId
),
statements: ['ALTER TABLE Albums ADD COLUMN MarketingBudget INT64'],
});
console.log('Waiting for operation to complete...');
await operation.promise();
console.log('Added the MarketingBudget column.');
} catch (err) {
console.error('ERROR:', err);
} finally {
// Close the spanner client when finished.
// The databaseAdminClient does not require explicit closure. The closure of the Spanner client will automatically close the databaseAdminClient.
spanner.close();
}
// [END spanner_add_column]
}
async function queryDataWithNewColumn(instanceId, databaseId, projectId) {
// [START spanner_query_data_with_new_column]
// This sample uses the `MarketingBudget` column. You can add the column
// by running the `add_column` sample or by running this DDL statement against
// your database:
// ALTER TABLE Albums ADD COLUMN MarketingBudget INT64
// Imports the Google Cloud client library
const {Spanner} = require('@google-cloud/spanner');
/**
* TODO(developer): Uncomment the following lines before running the sample.
*/
// const projectId = 'my-project-id';
// const instanceId = 'my-instance';
// const databaseId = 'my-database';
// Creates a client
const spanner = new Spanner({
projectId: projectId,
});
// Gets a reference to a Cloud Spanner instance and database
const instance = spanner.instance(instanceId);
const database = instance.database(databaseId);
const query = {
sql: 'SELECT SingerId, AlbumId, MarketingBudget FROM Albums',
};
// Queries rows from the Albums table
try {
const [rows] = await database.run(query);
rows.forEach(async row => {
const json = row.toJSON();
console.log(
`SingerId: ${json.SingerId}, AlbumId: ${
json.AlbumId
}, MarketingBudget: ${
json.MarketingBudget ? json.MarketingBudget : null
}`
);
});
} catch (err) {
console.error('ERROR:', err);
} finally {
// Close the database when finished.
database.close();
}
// [END spanner_query_data_with_new_column]
}
const {
createDatabaseWithVersionRetentionPeriod,
} = require('./database-create-with-version-retention-period');
const {
createDatabaseWithEncryptionKey,
} = require('./database-create-with-encryption-key');
require('yargs')
.demand(1)
.command(
'createDatabase <instanceName> <databaseName> <projectId>',
'Creates an example database with two tables in a Cloud Spanner instance using Database Admin Client.',
{},
opts => createDatabase(opts.instanceName, opts.databaseName, opts.projectId)
)
.example('node $0 createDatabase "my-instance" "my-database" "my-project-id"')
.command(
'addColumn <instanceName> <databaseName> <projectId>',
'Adds an example MarketingBudget column to an example Cloud Spanner table.',
{},
opts => addColumn(opts.instanceName, opts.databaseName, opts.projectId)
)
.example('node $0 addColumn "my-instance" "my-database" "my-project-id"')
.command(
'queryNewColumn <instanceName> <databaseName> <projectId>',
'Executes a read-only SQL query against an example Cloud Spanner table with an additional column (MarketingBudget) added by addColumn.',
{},
opts =>
queryDataWithNewColumn(
opts.instanceName,
opts.databaseName,
opts.projectId
)
)
.example('node $0 queryNewColumn "my-instance" "my-database" "my-project-id"')
.command(
'createDatabaseWithVersionRetentionPeriod <instanceName> <databaseId> <projectId>',
'Creates a database with a version retention period.',
{},
opts =>
createDatabaseWithVersionRetentionPeriod(
opts.instanceName,
opts.databaseId,
opts.projectId
)
)
.example(
'node $0 createDatabaseWithVersionRetentionPeriod "my-instance" "my-database-id" "my-project-id"'
)
.command(
'createDatabaseWithEncryptionKey <instanceName> <databaseName> <projectId> <keyName>',
'Creates an example database using given encryption key in a Cloud Spanner instance.',
{},
opts =>
createDatabaseWithEncryptionKey(
opts.instanceName,
opts.databaseName,
opts.projectId,
opts.keyName
)
)
.example(
'node $0 createDatabaseWithEncryptionKey "my-instance" "my-database" "my-project-id" "key-name"'
)
.wrap(120)
.recommendCommands()
.epilogue('For more information, see https://cloud.google.com/spanner/docs')
.strict()
.help().argv;