diff options
author | unknown <pem@mysql.comhem.se> | 2004-05-06 19:55:12 +0200 |
---|---|---|
committer | unknown <pem@mysql.comhem.se> | 2004-05-06 19:55:12 +0200 |
commit | 526569690e1d0d89d91359df1334b2ffba204a02 (patch) | |
tree | 125d3ae1ebe314b07915ef4518ed9cd47dde7444 /sql/handler.h | |
parent | f088cf990735a451a87add42a2ed4c4fda18513a (diff) | |
download | mariadb-git-526569690e1d0d89d91359df1334b2ffba204a02.tar.gz |
Fixed (portability) bug in handler.h, and tried to silence cast warnings on some platforms.
sql/handler.h:
Fixed (portability) bug. No qualified method names in the class definition.
sql/item_cmpfunc.h:
Attempt to silence cast warnings on some platforms.
sql/item_subselect.h:
Attempt to silence cast warnings on some platforms.
sql/set_var.cc:
Silence warning (missing cast).
sql/spatial.h:
Attempt to silence cast warnings on some platforms.
sql/sql_cache.cc:
Silence warning (wrong cast).
sql/sql_lex.h:
Attempt to silence cast warnings on some platforms.
Diffstat (limited to 'sql/handler.h')
-rw-r--r-- | sql/handler.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sql/handler.h b/sql/handler.h index ac5dceba8ab..27ef0e263b6 100644 --- a/sql/handler.h +++ b/sql/handler.h @@ -322,11 +322,11 @@ public: { return (my_errno=HA_ERR_WRONG_COMMAND); } - virtual int handler::read_range_first(const key_range *start_key, + virtual int read_range_first(const key_range *start_key, const key_range *end_key, bool sorted); - virtual int handler::read_range_next(bool eq_range); - int handler::compare_key(key_range *range); + virtual int read_range_next(bool eq_range); + int compare_key(key_range *range); virtual int ft_init() { return -1; } virtual FT_INFO *ft_init_ext(uint flags,uint inx,const byte *key, uint keylen) |