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

Add add.raw.json.column SerDe property #51

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open

Add add.raw.json.column SerDe property #51

wants to merge 1 commit into from

Commits on Feb 13, 2014

  1. Add add.raw.json.column SerDe property

    Added SerDe property "add.raw.json.column" can be used to include
    entire raw json string into the row as separate field.
    For example.
    
    CREATE TABLE test_01 (
        type string
    )
    ROW FORMAT SERDE "org.openx.data.jsonserde.JsonSerDe"
    WITH SERDEPROPERTIES ("add.raw.json.column" = "raw_json");
    
    will create table with additional "raw_json" field. That field will
    contain raw json string. That can be usefull when json structure
    is not uniform and later processing with UDTF is desired.
    wonder-mice committed Feb 13, 2014
    Configuration menu
    Copy the full SHA
    02b0d12 View commit details
    Browse the repository at this point in the history