src/main/java/com/google/cloud/spanner/pgadapter/wireoutput/ParameterStatusResponse.java [34:45]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public ParameterStatusResponse(
      DataOutputStream output, byte[] parameterKey, byte[] parameterValue) {
    super(
        output,
        HEADER_LENGTH
            + parameterKey.length
            + NULL_TERMINATOR_LENGTH
            + parameterValue.length
            + NULL_TERMINATOR_LENGTH);
    this.parameterKey = parameterKey;
    this.parameterValue = parameterValue;
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/com/google/cloud/spanner/pgadapter/wireoutput/StartUpMessageResponse.java [34:45]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public StartUpMessageResponse(
      DataOutputStream output, byte[] parameterKey, byte[] parameterValue) {
    super(
        output,
        HEADER_LENGTH
            + parameterKey.length
            + NULL_TERMINATOR_LENGTH
            + parameterValue.length
            + NULL_TERMINATOR_LENGTH);
    this.parameterKey = parameterKey;
    this.parameterValue = parameterValue;
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



