*** client/mysqlslap.c.orig 2015-02-26 23:51:43.000000000 +0900 --- client/mysqlslap.c 2015-03-17 14:51:56.372629846 +0900 *************** *** 863,869 **** if (auto_generate_sql_guid_primary) { ! dynstr_append(&table_string, "id varchar(32) primary key"); if (num_int_cols || num_char_cols || auto_generate_sql_guid_primary) dynstr_append(&table_string, ","); --- 863,869 ---- if (auto_generate_sql_guid_primary) { ! dynstr_append(&table_string, "id varchar(36) primary key"); if (num_int_cols || num_char_cols || auto_generate_sql_guid_primary) dynstr_append(&table_string, ","); *************** *** 878,884 **** if (count) /* Except for the first pass we add a comma */ dynstr_append(&table_string, ","); ! if (snprintf(buf, HUGE_STRING_LENGTH, "id%d varchar(32) unique key", count) > HUGE_STRING_LENGTH) { fprintf(stderr, "Memory Allocation error in create table\n"); --- 878,884 ---- if (count) /* Except for the first pass we add a comma */ dynstr_append(&table_string, ","); ! if (snprintf(buf, HUGE_STRING_LENGTH, "id%d varchar(36) unique key", count) > HUGE_STRING_LENGTH) { fprintf(stderr, "Memory Allocation error in create table\n");