Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Support For Proto Column in Spanner #1829

Merged
Changes from 1 commit
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
Prev Previous commit
docs: Updating docs & comments
  • Loading branch information
gauravpurohit06 committed Aug 7, 2023
commit 693a1657e22626314a06e7870e8251473f209ac7
3 changes: 2 additions & 1 deletion samples/database-update-with-proto-descriptor.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ function main(
const spanner = new Spanner({
projectId: projectId,
});
// Gets a reference to a Cloud Spanner instance and a database. The database does not need to exist.
// Gets a reference to a Cloud Spanner instance and a database. The database
// will be created and should not exist.
const instance = spanner.instance(instanceId);
const database = instance.database(databaseId);

Expand Down
Loading