diff options
author | davi@buzz.(none) <> | 2008-02-28 20:22:50 -0300 |
---|---|---|
committer | davi@buzz.(none) <> | 2008-02-28 20:22:50 -0300 |
commit | 2905909d8946c19141c86af12ac6017b9bde2488 (patch) | |
tree | 676edb9a4be1993cb98b1e11f9a509999832bf6d /sql/item.h | |
parent | 55f0fba46259d74aa178c682830f6a166846d30a (diff) | |
parent | 369c24937036a7850e61f7a77d5f9e169be3f724 (diff) | |
download | mariadb-git-2905909d8946c19141c86af12ac6017b9bde2488.tar.gz |
Merge buzz.(none):/home/davi/mysql-5.0-runtime
into buzz.(none):/home/davi/mysql-5.1-runtime
Diffstat (limited to 'sql/item.h')
-rw-r--r-- | sql/item.h | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/sql/item.h b/sql/item.h index 64894866504..7cf0bafa9d9 100644 --- a/sql/item.h +++ b/sql/item.h @@ -1559,8 +1559,6 @@ class Item_param :public Item char cnvbuf[MAX_FIELD_WIDTH]; String cnvstr; Item *cnvitem; - bool strict_type; - enum Item_result required_result_type; public: enum enum_item_param_state @@ -1690,11 +1688,8 @@ public: Otherwise return FALSE. */ bool eq(const Item *item, bool binary_cmp) const; - void set_strict_type(enum Item_result result_type_arg) - { - strict_type= TRUE; - required_result_type= result_type_arg; - } + /** Item is a argument to a limit clause. */ + bool limit_clause_param; }; |