diff options
Diffstat (limited to 'innobase/page')
-rw-r--r-- | innobase/page/page0cur.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/innobase/page/page0cur.c b/innobase/page/page0cur.c index 2042db80529..0e65dc8b1de 100644 --- a/innobase/page/page0cur.c +++ b/innobase/page/page0cur.c @@ -193,6 +193,11 @@ page_cur_search_with_match( } /*#endif */ #endif + + /* The following flag does not work for non-latin1 char sets because + cmp_full_field does not tell how many bytes matched */ + ut_a(mode != PAGE_CUR_LE_OR_EXTENDS); + /* If mode PAGE_CUR_G is specified, we are trying to position the cursor to answer a query of the form "tuple < X", where tuple is the input parameter, and X denotes an arbitrary physical record on |