Guest User

Untitled

a guest
Jun 20th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. CREATE EXTERNAL TABLE test.post(
  2. edge_media_to_tagged_user struct<
  3. "edges": array<
  4. "node": struct<
  5. "user": struct<
  6. full_name:text,
  7. id:bigint,
  8. is_verified: boolean,
  9. username:text
  10. >,
  11. x: float(24),
  12. y: float(24)
  13. >
  14. >
  15. >
  16. )
  17. ROW FORMAT SERDE 'org.openx.data.jsonserde.JsonSerDe'
  18. LOCATION 's3://bucket/test';
Add Comment
Please, Sign In to add comment