summaryrefslogtreecommitdiff
path: root/sql/ha_myisam.cc
diff options
context:
space:
mode:
authorsergefp@mysql.com <>2005-10-21 06:29:17 +0400
committersergefp@mysql.com <>2005-10-21 06:29:17 +0400
commit15a78334c32782327580933668f8dbeafb4ee2e3 (patch)
tree2ec77c30e97d8e7c0b2634973992317e30dffe08 /sql/ha_myisam.cc
parentda625424e05dcb648b6e3e60934677f42697209b (diff)
downloadmariadb-git-15a78334c32782327580933668f8dbeafb4ee2e3.tar.gz
BUG#9622, stage 2, work together with fix for BUG#12232:
added "nulls_ignored" index statistics collection method for MyISAM tables. (notification trigger: this is about BUG#9622).
Diffstat (limited to 'sql/ha_myisam.cc')
-rw-r--r--sql/ha_myisam.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/ha_myisam.cc b/sql/ha_myisam.cc
index 87529cc8713..9b84e48e970 100644
--- a/sql/ha_myisam.cc
+++ b/sql/ha_myisam.cc
@@ -40,7 +40,7 @@ TYPELIB myisam_recover_typelib= {array_elements(myisam_recover_names)-1,"",
myisam_recover_names, NULL};
const char *myisam_stats_method_names[] = {"nulls_unequal", "nulls_equal",
- NullS};
+ "nulls_ignored", NullS};
TYPELIB myisam_stats_method_typelib= {
array_elements(myisam_stats_method_names) - 1, "",
myisam_stats_method_names, NULL};