diff options
author | unknown <heikki@hundin.mysql.fi> | 2002-09-25 20:35:12 +0300 |
---|---|---|
committer | unknown <heikki@hundin.mysql.fi> | 2002-09-25 20:35:12 +0300 |
commit | 2384ead5aaa5344134ba1b5cad865f88d9d0f7da (patch) | |
tree | 096797edcaa627d23128c3ee6acd11c6a4396e91 /sql/ha_innodb.cc | |
parent | 3cb32b8c137e3a3cdf9a0d4d6bde506d33edb7ab (diff) | |
download | mariadb-git-2384ead5aaa5344134ba1b5cad865f88d9d0f7da.tar.gz |
ha_innodb.h, ha_innodb.cc:
Remove the flag HA_NOT_READ_PREFIX_LAST because ORDER BY orders wrong then; also remove the diagnostic print to avoid cluttering the error log
sql/ha_innodb.cc:
Remove the flag HA_NOT_READ_PREFIX_LAST because ORDER BY orders wrong then; also remove the diagnostic print to avoid cluttering the error log
sql/ha_innodb.h:
Remove the flag HA_NOT_READ_PREFIX_LAST because ORDER BY orders wrong then; also remove the diagnostic print to avoid cluttering the error log
Diffstat (limited to 'sql/ha_innodb.cc')
-rw-r--r-- | sql/ha_innodb.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/ha_innodb.cc b/sql/ha_innodb.cc index c622a92f797..670ea914b21 100644 --- a/sql/ha_innodb.cc +++ b/sql/ha_innodb.cc @@ -2180,9 +2180,9 @@ convert_search_mode_to_innobase( case HA_READ_BEFORE_KEY: return(PAGE_CUR_L); case HA_READ_PREFIX: return(PAGE_CUR_GE); case HA_READ_PREFIX_LAST: - ut_print_timestamp(stderr); + /* ut_print_timestamp(stderr); fprintf(stderr, - " InnoDB: Warning: Using HA_READ_PREFIX_LAST\n"); + " InnoDB: Warning: Using HA_READ_PREFIX_LAST\n"); */ return(PAGE_CUR_LE); /* InnoDB does not yet support ..PREFIX_LAST! |