GitHub user roshan opened a pull request:

    https://github.com/apache/thrift/pull/445

    THRIFT-3098 Print binary typedefs the same way we do binary fields

    Now
    
    ```
    typedef BinType binary
    struct BinHolder {
     1: binary bin_field
     2: BinType typedef_field
    }
    ```
    
    generates
    
    ```
     sb.append("bin_field:");
        if (this.bin_field == null) {
          sb.append("null");
        } else {
          org.apache.thrift.TBaseHelper.toString(this.bin_field, sb);
        }
        first = false;
        if (!first) sb.append(", ");
        sb.append("typedef_field:");
        if (this.typedef_field == null) {
          sb.append("null");
        } else {
          org.apache.thrift.TBaseHelper.toString(this.typedef_field, sb);
        }
    ```

You can merge this pull request into a Git repository by running:

    $ git pull https://github.com/roshan/thrift THRIFT-3098_pretty_print_typedef

Alternatively you can review and apply these changes as the patch at:

    https://github.com/apache/thrift/pull/445.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

    This closes #445
    
----
commit d15303be96ec2ef1da3410f70fe396f1f61fb22e
Author: Roshan George <ros...@arjie.com>
Date:   2015-04-16T04:39:39Z

    THRIFT-3098 Print binary typedefs the same way we do binary fields

----


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to