[ 
https://issues.apache.org/jira/browse/AVRO-1300?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Doug Cutting updated AVRO-1300:
-------------------------------

       Resolution: Fixed
    Fix Version/s: 1.7.5
         Assignee: Christophe Taton
           Status: Resolved  (was: Patch Available)

I committed this.  Thanks, Christophe!
                
> Copy-constructor for specific record builders: Builder(Builder other) does 
> not copy the fields from builder "other"
> -------------------------------------------------------------------------------------------------------------------
>
>                 Key: AVRO-1300
>                 URL: https://issues.apache.org/jira/browse/AVRO-1300
>             Project: Avro
>          Issue Type: Bug
>          Components: java
>    Affects Versions: 1.7.5
>            Reporter: Christophe Taton
>            Assignee: Christophe Taton
>             Fix For: 1.7.5
>
>         Attachments: AVRO-1300.20130418-104121.patch
>
>
> Here is a test that fails:
>   @Test
>   public void test() {
>     final Player.Builder builder = Player.newBuilder()
>         .setFirstName("FirstName");
>     final Player.Builder other = Player.newBuilder(builder);
>     Assert.assertEquals("FirstName", other.getFirstName());
>   }
> The generated code looks like:
>   /** Creates a new Player RecordBuilder by copying an existing Builder */
>   public static avro.examples.baseball.Player.Builder 
> newBuilder(avro.examples.baseball.Player.Builder other) {
>     return new avro.examples.baseball.Player.Builder(other);
>   }
>   /** Creates a Builder by copying an existing Builder */
>   private Builder(avro.examples.baseball.Player.Builder other) {
>     super(other);  // calls 
> SpecificRecordBuilderBase(SpecificRecordBuilderBase<T> other)
>   }

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

Reply via email to