null+****@clear*****
null+****@clear*****
2012年 2月 2日 (木) 15:16:47 JST
Kouhei Sutou 2012-02-02 15:16:47 +0900 (Thu, 02 Feb 2012)
New Revision: a9dedcb423e6170c0ff3ca4a7d324b17dae7a6ec
Log:
show more infomation for fast_order_limit disabled.
Modified files:
ha_mroonga.cc
Modified: ha_mroonga.cc (+4 -2)
===================================================================
--- ha_mroonga.cc 2012-02-02 14:50:18 +0900 (f9dbe78)
+++ ha_mroonga.cc 2012-02-02 15:16:47 +0900 (37bf4ad)
@@ -6818,7 +6818,8 @@ void ha_mroonga::check_fast_order_limit(grn_table_sort_key **sort_keys,
if (mrn_need_normalize(field))
{
- DBUG_PRINT("info", ("mroonga: fast_order_limit = FALSE"));
+ DBUG_PRINT("info", ("mroonga: fast_order_limit = FALSE: "
+ "sort by collated value isn't supported yet."));
fast_order_limit = FALSE;
free(*sort_keys);
*sort_keys = NULL;
@@ -6836,7 +6837,8 @@ void ha_mroonga::check_fast_order_limit(grn_table_sort_key **sort_keys,
} else if (match_against->eq(item, true)) {
(*sort_keys)[i].key = score_column;
} else {
- DBUG_PRINT("info", ("mroonga: fast_order_limit = FALSE"));
+ DBUG_PRINT("info", ("mroonga: fast_order_limit = FALSE: "
+ "sort by computed value isn't supported."));
fast_order_limit = FALSE;
free(*sort_keys);
*sort_keys = NULL;