diff options
author | Alexander Barkov <bar@mariadb.org> | 2017-05-06 20:44:05 +0400 |
---|---|---|
committer | Alexander Barkov <bar@mariadb.org> | 2017-05-06 20:44:05 +0400 |
commit | c898de84b78482932fd5110e4bc40229f109d424 (patch) | |
tree | 0e09ff8bd83ed6ca888b2ed30aa0da5d27c32a22 /sql/item_subselect.h | |
parent | 46239f29c6e624da3b516a25433b5dfb97fe12ea (diff) | |
download | mariadb-git-c898de84b78482932fd5110e4bc40229f109d424.tar.gz |
MDEV-12714 Determine Item::field_type() from Item::type_handler()
Diffstat (limited to 'sql/item_subselect.h')
-rw-r--r-- | sql/item_subselect.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/sql/item_subselect.h b/sql/item_subselect.h index b9ef3f5a8fd..8637a9c7310 100644 --- a/sql/item_subselect.h +++ b/sql/item_subselect.h @@ -305,7 +305,6 @@ public: bool get_date(MYSQL_TIME *ltime, ulonglong fuzzydate); enum Item_result result_type() const; enum Item_result cmp_type() const; - enum_field_types field_type() const; const Type_handler *type_handler() const; void fix_length_and_dec(); @@ -397,7 +396,6 @@ public: void no_rows_in_result(); enum Item_result result_type() const { return INT_RESULT;} - enum_field_types field_type() const { return MYSQL_TYPE_LONGLONG; } const Type_handler *type_handler() const { return &type_handler_longlong; } longlong val_int(); double val_real(); |