Skip to content

Commit

Permalink
Fix a Spanner region tag. (#1047)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmdobry authored Mar 1, 2018
1 parent 97a40da commit 2e131b7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ public Void run(TransactionContext transaction) throws Exception {
}
// [END spanner_read_write_transaction]

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

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

0 comments on commit 2e131b7

Please sign in to comment.