grpc-gcp-benchmarks/src/benchmarkTest/java/SpannerClientTestCases.java [81:95]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      this.spannerOptions = SpannerOptions.newBuilder().build();
    }

    int columnBytes = Integer.min(payload, MAX_SIZE_PER_COLUMN);
    if (payload > columnBytes) {
      throw new IllegalStateException(
          "Payload in SpannerClient mode cannot be larger than + " + MAX_SIZE_PER_COLUMN);
    }
    char[] charArray = new char[columnBytes];
    Arrays.fill(charArray, 'z');
    this.colContent = new String(charArray);
  }

  private DatabaseClient getDbClient(Spanner spanner) {
    System.out.println("Project id:" + spannerOptions.getProjectId().toString());
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



grpc-gcp-benchmarks/src/main/SpannerClientTestCases.java [60:73]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    this.spannerOptions = SpannerOptions.newBuilder().build();

    int columnBytes = Integer.min(payload, MAX_SIZE_PER_COLUMN);
    if (payload > columnBytes) {
      throw new IllegalStateException(
          "Payload in SpannerClient mode cannot be larger than + " + MAX_SIZE_PER_COLUMN);
    }
    char[] charArray = new char[columnBytes];
    Arrays.fill(charArray, 'z');
    this.colContent = new String(charArray);
  }

  private DatabaseClient getDbClient(Spanner spanner) {
    System.out.println("Project id:" + spannerOptions.getProjectId().toString());
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



