mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
Merge bb-10.2-ext into 10.3
This commit is contained in:
@ -704,7 +704,12 @@ public:
|
||||
}
|
||||
virtual bool is_scalar_type() const { return true; }
|
||||
virtual bool can_return_int() const { return true; }
|
||||
virtual bool can_return_decimal() const { return true; }
|
||||
virtual bool can_return_real() const { return true; }
|
||||
virtual bool can_return_str() const { return true; }
|
||||
virtual bool can_return_text() const { return true; }
|
||||
virtual bool can_return_date() const { return true; }
|
||||
virtual bool can_return_time() const { return true; }
|
||||
virtual bool is_general_purpose_string_type() const { return false; }
|
||||
virtual uint Item_time_precision(Item *item) const;
|
||||
virtual uint Item_datetime_precision(Item *item) const;
|
||||
@ -1001,7 +1006,12 @@ public:
|
||||
const Name name() const { return m_name_row; }
|
||||
bool is_scalar_type() const { return false; }
|
||||
bool can_return_int() const { return false; }
|
||||
bool can_return_decimal() const { return false; }
|
||||
bool can_return_real() const { return false; }
|
||||
bool can_return_str() const { return false; }
|
||||
bool can_return_text() const { return false; }
|
||||
bool can_return_date() const { return false; }
|
||||
bool can_return_time() const { return false; }
|
||||
enum_field_types field_type() const
|
||||
{
|
||||
DBUG_ASSERT(0);
|
||||
@ -2689,7 +2699,11 @@ public:
|
||||
TABLE *table) const;
|
||||
|
||||
bool can_return_int() const { return false; }
|
||||
bool can_return_decimal() const { return false; }
|
||||
bool can_return_real() const { return false; }
|
||||
bool can_return_text() const { return false; }
|
||||
bool can_return_date() const { return false; }
|
||||
bool can_return_time() const { return false; }
|
||||
bool is_traditional_type() const
|
||||
{
|
||||
return false;
|
||||
|
Reference in New Issue
Block a user