diff options
author | sasha@mysql.sashanet.com <> | 2001-03-23 21:56:18 -0700 |
---|---|---|
committer | sasha@mysql.sashanet.com <> | 2001-03-23 21:56:18 -0700 |
commit | 2531f38803ff6804d6b195cb4f52cc55365435ed (patch) | |
tree | d0fc2d6930c1318654fc97d355239f34be443dfd /sql/sql_table.cc | |
parent | 8ecd6b4b582909ef843b143a4b66a27ac78e0f7b (diff) | |
download | mariadb-git-2531f38803ff6804d6b195cb4f52cc55365435ed.tar.gz |
added test case for the nasty join query crash
Diffstat (limited to 'sql/sql_table.cc')
-rw-r--r-- | sql/sql_table.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_table.cc b/sql/sql_table.cc index 3c15aa827cd..77aaf1edae4 100644 --- a/sql/sql_table.cc +++ b/sql/sql_table.cc @@ -243,7 +243,7 @@ int mysql_create_table(THD *thd,const char *db, const char *table_name, } it2.rewind(); } - /* If fixed row records, we need on bit to check for deleted rows */ + /* If fixed row records, we need one bit to check for deleted rows */ if (!(db_options & HA_OPTION_PACK_RECORD)) null_fields++; pos=(null_fields+7)/8; |