diff options
author | unknown <marko@hundin.mysql.fi> | 2005-07-04 16:12:08 +0300 |
---|---|---|
committer | unknown <marko@hundin.mysql.fi> | 2005-07-04 16:12:08 +0300 |
commit | a1da992f4f3da5a5c84a819c80dd5d09db9c66d8 (patch) | |
tree | 29e8f1f9ee7807b8870a57f344abc3178c977c92 /innobase/include | |
parent | 5d82b41e3adccc566b68542bf5be097ed45f5390 (diff) | |
parent | da83833964d877cacdb4e432522d171b3260e06a (diff) | |
download | mariadb-git-a1da992f4f3da5a5c84a819c80dd5d09db9c66d8.tar.gz |
Merge marko@bk-internal.mysql.com:/home/bk/mysql-5.0
into hundin.mysql.fi:/home/marko/mysql-5.0-current
sql/ha_innodb.cc:
Auto merged
Diffstat (limited to 'innobase/include')
-rw-r--r-- | innobase/include/page0cur.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/innobase/include/page0cur.h b/innobase/include/page0cur.h index e89e740e775..b03302b0e77 100644 --- a/innobase/include/page0cur.h +++ b/innobase/include/page0cur.h @@ -26,11 +26,13 @@ Created 10/4/1994 Heikki Tuuri #define PAGE_CUR_GE 2 #define PAGE_CUR_L 3 #define PAGE_CUR_LE 4 -#define PAGE_CUR_LE_OR_EXTENDS 5 /* This is a search mode used in +/*#define PAGE_CUR_LE_OR_EXTENDS 5*/ /* This is a search mode used in "column LIKE 'abc%' ORDER BY column DESC"; we have to find strings which are <= 'abc' or which extend it */ -#define PAGE_CUR_DBG 6 +#ifdef UNIV_SEARCH_DEBUG +# define PAGE_CUR_DBG 6 /* As PAGE_CUR_LE, but skips search shortcut */ +#endif /* UNIV_SEARCH_DEBUG */ #ifdef PAGE_CUR_ADAPT # ifdef UNIV_SEARCH_PERF_STAT |