1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Renamed Type_all_attributes::set_maybe_null() to set_type_maybe_null()

This was done to have Item::set_maybe_null() as an inline function
This commit is contained in:
Monty
2020-08-18 23:24:09 +03:00
committed by Sergei Golubchik
parent c6bf04ab2e
commit cd1782d26a
5 changed files with 9 additions and 4 deletions

View File

@ -7578,7 +7578,7 @@ public:
m_maybe_null(false)
{ }
void set_maybe_null(bool maybe_null_arg) { m_maybe_null= maybe_null_arg; }
void set_type_maybe_null(bool maybe_null_arg) { m_maybe_null= maybe_null_arg; }
bool get_maybe_null() const { return m_maybe_null; }
decimal_digits_t decimal_precision() const