diff options
author | monty@mishka.local <> | 2005-05-06 11:39:30 +0300 |
---|---|---|
committer | monty@mishka.local <> | 2005-05-06 11:39:30 +0300 |
commit | a9f6aab4c9fb3a5f06c95227d70c9bf44e25f957 (patch) | |
tree | 9bc36292e6c63e524c34d371f01eb8a1ec82d9ee /sql/unireg.cc | |
parent | c83b78169e52a40241d0dc0e88cddbd84420c572 (diff) | |
download | mariadb-git-a9f6aab4c9fb3a5f06c95227d70c9bf44e25f957.tar.gz |
Fixes while reviewing new code
Added option --count to mysqlshow (to show number of rows)
Fixed possible core dump in information schema
Diffstat (limited to 'sql/unireg.cc')
-rw-r--r-- | sql/unireg.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/unireg.cc b/sql/unireg.cc index 95a383e0f01..7ad4563d636 100644 --- a/sql/unireg.cc +++ b/sql/unireg.cc @@ -504,6 +504,7 @@ static bool pack_header(uchar *forminfo, enum db_type table_type, int2store(forminfo+280,22); /* Rows needed */ int2store(forminfo+282,null_fields); int2store(forminfo+284,com_length); + /* Up to forminfo+288 is free to use for additional information */ DBUG_RETURN(0); } /* pack_header */ |