Skip to content

Instantly share code, notes, and snippets.

@sakama
Created May 20, 2016 09:01
Show Gist options
  • Save sakama/eacfc5577f51ce0eed2a10147a67620a to your computer and use it in GitHub Desktop.
Save sakama/eacfc5577f51ce0eed2a10147a67620a to your computer and use it in GitHub Desktop.
ダミーのスキーマを作る
private Schema getFieldSchema() {
ImmutableList.Builder<Column> columns = ImmutableList.builder();
columns.add(new Column(0, "record", Types.JSON));
return new Schema(columns.build());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment