summaryrefslogtreecommitdiff
path: root/innobase
diff options
context:
space:
mode:
authorunknown <heikki@hundin.mysql.fi>2002-10-16 00:05:15 +0300
committerunknown <heikki@hundin.mysql.fi>2002-10-16 00:05:15 +0300
commitb95b51e53ad89f2ff1e6155c86cc3736c6402283 (patch)
treeff2d4dba069116dc453ad095c1481034cbbbf3a4 /innobase
parent09ab0dded2360bd8821453ccd3be7a8111674400 (diff)
downloadmariadb-git-b95b51e53ad89f2ff1e6155c86cc3736c6402283.tar.gz
btr0cur.c:
Fix typo in earlier commit innobase/btr/btr0cur.c: Fix typo in earlier commit
Diffstat (limited to 'innobase')
-rw-r--r--innobase/btr/btr0cur.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/innobase/btr/btr0cur.c b/innobase/btr/btr0cur.c
index c4960b7af80..e1fe5ba8771 100644
--- a/innobase/btr/btr0cur.c
+++ b/innobase/btr/btr0cur.c
@@ -2624,7 +2624,7 @@ btr_estimate_n_rows_in_range(
then we estimate all rows are in the range */
if (n_rows == 0) {
- n_rows = index->table->stat_n_rows / 2;
+ n_rows = index->table->stat_n_rows;
}
}