Skip to content

Commit

Permalink
[GOBBLIN-335] Increase blob size of mysql
Browse files Browse the repository at this point in the history
Closes #2189 from autumnust/master
  • Loading branch information
autumnust authored and htran1 committed Dec 6, 2017
1 parent 0afdc45 commit 35b894c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ public class MysqlStateStore<T extends State> implements StateStore<T> {
"CREATE TABLE IF NOT EXISTS $TABLE$ (store_name varchar(100) CHARACTER SET latin1 not null,"
+ "table_name varchar(667) CHARACTER SET latin1 not null,"
+ " modified_time timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,"
+ " state mediumblob, primary key(store_name, table_name))";
+ " state longblob, primary key(store_name, table_name))";

private final String UPSERT_JOB_STATE_SQL;
private final String SELECT_JOB_STATE_SQL;
Expand Down

0 comments on commit 35b894c

Please sign in to comment.