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_row.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_row.h')
-rw-r--r-- | sql/item_row.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/sql/item_row.h b/sql/item_row.h index 16232d4ac4c..59cb512bfe7 100644 --- a/sql/item_row.h +++ b/sql/item_row.h @@ -92,11 +92,6 @@ public: bool const_item() const { return const_item_cache; }; enum Item_result result_type() const { return ROW_RESULT; } Item_result cmp_type() const { return ROW_RESULT; } - enum_field_types field_type() const - { - DBUG_ASSERT(0); - return MYSQL_TYPE_DOUBLE; - } void update_used_tables() { used_tables_and_const_cache_init(); |