Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ORC-236: Support UNION type in Java Convert tool #1025

Merged
merged 4 commits into from
Feb 16, 2022

Commits on Jan 27, 2022

  1. ORC-236: Support UNION type in Java Convert tool

    This patch add support to convert json to UNION type in orc file. For
    example, for schema `struct<foo:uniontype<int,string>>`, the following
    json lines can be parsed into UNION type.
    
    ```
    {"foo": {"tag": 0, "value": 1}}
    {"foo": {"tag": 1, "value": "testing"}}
    {"foo": {"tag": 0, "value": 3}}
    ```
    rizaon committed Jan 27, 2022
    Configuration menu
    Copy the full SHA
    635102e View commit details
    Browse the repository at this point in the history

Commits on Feb 3, 2022

  1. Configuration menu
    Copy the full SHA
    572a7f4 View commit details
    Browse the repository at this point in the history
  2. Fix checkstyle errors

    rizaon committed Feb 3, 2022
    Configuration menu
    Copy the full SHA
    e73fc3f View commit details
    Browse the repository at this point in the history

Commits on Feb 13, 2022

  1. Configuration menu
    Copy the full SHA
    d171029 View commit details
    Browse the repository at this point in the history