8000 Fix a Spanner region tag. (#1047) · dayouxia79100/java-docs-samples@2e131b7 · GitHub
[go: up one dir, main page]

Skip to content

Commit 2e131b7

Browse files
authored
Fix a Spanner region tag. (GoogleCloudPlatform#1047)
1 parent 97a40da commit 2e131b7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spanner/cloud-client/src/main/java/com/example/spanner/SpannerSample.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ public Void run(TransactionContext transaction) throws Exception {
274274
}
275275
// [END spanner_read_write_transaction]
276276

277-
// [START spanner_query_with_new_column]
277+
// [START spanner_query_data_with_new_column]
278278
static void queryMarketingBudget(DatabaseClient dbClient) {
279279
// Rows without an explicit value for MarketingBudget will have a MarketingBudget equal to
280280
// null.
@@ -292,7 +292,7 @@ static void queryMarketingBudget(DatabaseClient dbClient) {
292292
resultSet.isNull("MarketingBudget") ? "NULL" : resultSet.getLong("MarketingBudget"));
293293
}
294294
}
295-
// [END spanner_query_with_new_column]
295+
// [END spanner_query_data_with_new_column]
296296

297297
// [START spanner_create_index]
298298
static void addIndex(DatabaseAdminClient adminClient, DatabaseId dbId) {

0 commit comments

Comments
 (0)
0