File tree Expand file tree Collapse file tree
google-cloud-clients/google-cloud-spanner/src
main/java/com/google/cloud/spanner
test/java/com/google/cloud/spanner/it Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1029,7 +1029,7 @@ private ResultSet executeQueryInternal(
10291029
10301030 ExecuteSqlRequest .Builder getExecuteSqlRequestBuilder (
10311031 Statement statement ,
1032- com . google . spanner . v1 . ExecuteSqlRequest . QueryMode queryMode ) {
1032+ QueryMode queryMode ) {
10331033 ExecuteSqlRequest .Builder builder =
10341034 ExecuteSqlRequest .newBuilder ()
10351035 .setSql (statement .getSql ())
@@ -1388,7 +1388,7 @@ public long executePartitionedUpdate(Statement statement) {
13881388 final ExecuteSqlRequest .Builder builder =
13891389 ExecuteSqlRequest .newBuilder ()
13901390 .setSql (statement .getSql ())
1391- .setQueryMode (com . google . spanner . v1 . ExecuteSqlRequest . QueryMode .NORMAL )
1391+ .setQueryMode (QueryMode .NORMAL )
13921392 .setSession (session .name )
13931393 .setTransaction (TransactionSelector .newBuilder ().setId (transactionId ).build ());
13941394 Map <String , Value > stmtParameters = statement .getParameters ();
@@ -1613,7 +1613,7 @@ public long executeUpdate(Statement statement) {
16131613 final ExecuteSqlRequest .Builder builder =
16141614 getExecuteSqlRequestBuilder (
16151615 statement ,
1616- com . google . spanner . v1 . ExecuteSqlRequest . QueryMode .NORMAL );
1616+ QueryMode .NORMAL );
16171617 builder .setSeqno (getSeqNo ());
16181618 com .google .spanner .v1 .ResultSet resultSet =
16191619 runWithRetries (
Original file line number Diff line number Diff line change 1+ /*
2+ * Copyright 2017 Google LLC
3+ *
4+ * Licensed under the Apache License, Version 2.0 (the "License");
5+ * you may not use this file except in compliance with the License.
6+ * You may obtain a copy of the License at
7+ *
8+ * http://www.apache.org/licenses/LICENSE-2.0
9+ *
10+ * Unless required by applicable law or agreed to in writing, software
11+ * distributed under the License is distributed on an "AS IS" BASIS,
12+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+ * See the License for the specific language governing permissions and
14+ * limitations under the License.
15+ */
16+
117package com .google .cloud .spanner .it ;
218
319import static com .google .common .truth .Truth .assertThat ;
You can’t perform that action at this time.
0 commit comments