diff options
author | unknown <heikki@hundin.mysql.fi> | 2002-10-16 00:05:15 +0300 |
---|---|---|
committer | unknown <heikki@hundin.mysql.fi> | 2002-10-16 00:05:15 +0300 |
commit | b95b51e53ad89f2ff1e6155c86cc3736c6402283 (patch) | |
tree | ff2d4dba069116dc453ad095c1481034cbbbf3a4 /innobase | |
parent | 09ab0dded2360bd8821453ccd3be7a8111674400 (diff) | |
download | mariadb-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.c | 2 |
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; } } |