File tree Expand file tree Collapse file tree 3 files changed +5
-1
lines changed
appengine-java8/spanner/src/main/java/com/example/appengine/spanner Expand file tree Collapse file tree 3 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 1818import com .google .cloud .spanner .DatabaseId ;
1919import com .google .cloud .spanner .Spanner ;
2020import com .google .cloud .spanner .SpannerOptions ;
21+
2122import java .io .IOException ;
2223import java .util .UUID ;
2324import javax .servlet .ServletContext ;
Original file line number Diff line number Diff line change 2828import com .google .cloud .spanner .Struct ;
2929import com .google .common .base .Stopwatch ;
3030import com .google .spanner .admin .database .v1 .UpdateDatabaseDdlMetadata ;
31+
3132import java .io .PrintWriter ;
3233import java .util .ArrayList ;
3334import java .util .Arrays ;
@@ -331,7 +332,8 @@ private static void addStoringIndex() {
331332 SpannerClient .getInstanceId (),
332333 SpannerClient .getDatabaseId (),
333334 Arrays .asList (
334- "CREATE INDEX AlbumsByAlbumTitle2 ON Albums(AlbumTitle) STORING (MarketingBudget)" ),
335+ "CREATE INDEX AlbumsByAlbumTitle2 "
336+ + "ON Albums(AlbumTitle) STORING (MarketingBudget)" ),
335337 null );
336338 op .waitFor ();
337339 }
Original file line number Diff line number Diff line change 1717package com .example .appengine .spanner ;
1818
1919import com .example .appengine .spanner .SpannerTasks .Task ;
20+
2021import java .io .IOException ;
2122import java .io .PrintWriter ;
2223import java .util .Arrays ;
You can’t perform that action at this time.
0 commit comments