Hi all,
I create a simple table like:
Create table test_vchar
(id bigint, content varchar(500));
then I inserted 2 rows like (1,'abcde') and (2,'abcde');
then I issued a SHOW TABLE STATUS command, from the result I saw Avg_row_length of the table is 8192, I don't know how is it calculated, is the max length of my record be 8+500*3?
I create a simple table like:
Create table test_vchar
(id bigint, content varchar(500));
then I inserted 2 rows like (1,'abcde') and (2,'abcde');
then I issued a SHOW TABLE STATUS command, from the result I saw Avg_row_length of the table is 8192, I don't know how is it calculated, is the max length of my record be 8+500*3?