Created
May 20, 2016 09:01
-
-
Save sakama/eacfc5577f51ce0eed2a10147a67620a to your computer and use it in GitHub Desktop.
ダミーのスキーマを作る
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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