From b95b51e53ad89f2ff1e6155c86cc3736c6402283 Mon Sep 17 00:00:00 2001 From: unknown Date: Wed, 16 Oct 2002 00:05:15 +0300 Subject: [PATCH] btr0cur.c: Fix typo in earlier commit innobase/btr/btr0cur.c: Fix typo in earlier commit --- innobase/btr/btr0cur.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } }