diff options
author | heikki@hundin.mysql.fi <> | 2002-10-16 00:05:15 +0300 |
---|---|---|
committer | heikki@hundin.mysql.fi <> | 2002-10-16 00:05:15 +0300 |
commit | 31b69aff28f53e83d5e99782bcaf76052548a1f0 (patch) | |
tree | ff2d4dba069116dc453ad095c1481034cbbbf3a4 /innobase/btr/btr0cur.c | |
parent | 3652fe789b55dde701e175aaeabcd47d9bce80e1 (diff) | |
download | mariadb-git-31b69aff28f53e83d5e99782bcaf76052548a1f0.tar.gz |
btr0cur.c:
Fix typo in earlier commit
Diffstat (limited to 'innobase/btr/btr0cur.c')
-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; } } |