summaryrefslogtreecommitdiff
path: root/sql/ha_heap.cc
diff options
context:
space:
mode:
authorunknown <konstantin@mysql.com>2006-02-03 00:07:36 +0300
committerunknown <konstantin@mysql.com>2006-02-03 00:07:36 +0300
commit2fb59bd72a89fae62a15623b7b2e6ae8aea40927 (patch)
tree6912fbadce7df138637af6d72928935fc99c87f7 /sql/ha_heap.cc
parentcf4b6ee4c01ca9e002511ad221872b4182b910fa (diff)
downloadmariadb-git-2fb59bd72a89fae62a15623b7b2e6ae8aea40927.tar.gz
Post-merge fixes.
Diffstat (limited to 'sql/ha_heap.cc')
-rw-r--r--sql/ha_heap.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/ha_heap.cc b/sql/ha_heap.cc
index 2a989a71edc..739569e305a 100644
--- a/sql/ha_heap.cc
+++ b/sql/ha_heap.cc
@@ -53,7 +53,7 @@ handlerton heap_hton= {
ha_heap::ha_heap(TABLE *table_arg)
:handler(&heap_hton, table_arg), file(0), records_changed(0),
- key_stats_version(0)
+ key_stat_version(0)
{}
@@ -532,7 +532,7 @@ ha_rows ha_heap::records_in_range(uint inx, key_range *min_key,
return records;
/* Assert that info() did run. We need current statistics here. */
- DBUG_ASSERT(key_stats_ok);
+ DBUG_ASSERT(key_stat_version);
return key->rec_per_key[key->key_parts-1];
}