Skip to content

Instantly share code, notes, and snippets.

@doujiang24
Last active May 16, 2016 07:58
Show Gist options
  • Save doujiang24/c85f38b10e522bcd02b59f096a207ede to your computer and use it in GitHub Desktop.
Save doujiang24/c85f38b10e522bcd02b59f096a207ede to your computer and use it in GitHub Desktop.
{
"a" : {
"foo": [
{
"b": "c",
"d": "f"
}
],
"bar": [
{
"b": "c",
"d": "f"
}
]
}
}
create table (
l0_hash_key char,
l1_hash_key char,
l2_arr_index int,
l3_hash_key char,
l4_hash_val char,
)
l0_hash_key, l1_hash_key, l2_arr_index, l3_hash_key, l4_hash_val
"a", "foo", 1, "b", "c"
"a", "foo", 1, "d", "f"
"a", "bar", 1, "b", "c"
"a", "bar", 1, "d", "f"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment