// 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. // sample-metadata: // title: Creates a new value-storing index // usage: node createStoringIndex 'use strict'; function main( instanceId = 'my-instance', databaseId = 'my-database', projectId = 'my-project-id', ) { // [START spanner_create_storing_index] /** * TODO(developer): Uncomment these variables before running the sample. */ // const instanceId = 'my-instance'; // const databaseId = 'my-database'; // const projectId = 'my-project-id'; // 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(); async function createStoringIndex() { const request = [ 'CREATE INDEX AlbumsByAlbumTitle2 ON Albums(AlbumTitle) STORING (MarketingBudget)', ]; // Creates a new index in the database try { const [operation] = await databaseAdminClient.updateDatabaseDdl({ database: databaseAdminClient.databasePath( projectId, instanceId, databaseId, ), statements: request, }); console.log('Waiting for operation to complete...'); await operation.promise(); console.log('Added the AlbumsByAlbumTitle2 index.'); } 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(); } } createStoringIndex(); // [END spanner_create_storing_index] } process.on('unhandledRejection', err => { console.error(err.message); process.exitCode = 1; }); main(...process.argv.slice(2));