mirror of
https://github.com/MariaDB/server.git
synced 2026-05-09 16:44:29 +02:00
cleanup: rename Protocol::store() to Protocol::store_datetime()
to match the naming pattern of all other Protocol::store_xxx() methods
This commit is contained in:
parent
59b51e6aa7
commit
abc3889f1c
5 changed files with 14 additions and 14 deletions
|
|
@ -138,7 +138,7 @@ public:
|
|||
CHARSET_INFO *fromcs, CHARSET_INFO *tocs)=0;
|
||||
virtual bool store_float(float from, uint32 decimals)=0;
|
||||
virtual bool store_double(double from, uint32 decimals)=0;
|
||||
virtual bool store(MYSQL_TIME *time, int decimals)=0;
|
||||
virtual bool store_datetime(MYSQL_TIME *time, int decimals)=0;
|
||||
virtual bool store_date(MYSQL_TIME *time)=0;
|
||||
virtual bool store_time(MYSQL_TIME *time, int decimals)=0;
|
||||
virtual bool store(Field *field)=0;
|
||||
|
|
@ -217,7 +217,7 @@ public:
|
|||
bool store_decimal(const my_decimal *) override;
|
||||
bool store_str(const char *from, size_t length,
|
||||
CHARSET_INFO *fromcs, CHARSET_INFO *tocs) override;
|
||||
bool store(MYSQL_TIME *time, int decimals) override;
|
||||
bool store_datetime(MYSQL_TIME *time, int decimals) override;
|
||||
bool store_date(MYSQL_TIME *time) override;
|
||||
bool store_time(MYSQL_TIME *time, int decimals) override;
|
||||
bool store_float(float nr, uint32 decimals) override;
|
||||
|
|
@ -265,7 +265,7 @@ public:
|
|||
bool store_decimal(const my_decimal *) override;
|
||||
bool store_str(const char *from, size_t length,
|
||||
CHARSET_INFO *fromcs, CHARSET_INFO *tocs) override;
|
||||
bool store(MYSQL_TIME *time, int decimals) override;
|
||||
bool store_datetime(MYSQL_TIME *time, int decimals) override;
|
||||
bool store_date(MYSQL_TIME *time) override;
|
||||
bool store_time(MYSQL_TIME *time, int decimals) override;
|
||||
bool store_float(float nr, uint32 decimals) override;
|
||||
|
|
@ -316,7 +316,7 @@ public:
|
|||
{
|
||||
return false;
|
||||
}
|
||||
bool store(MYSQL_TIME *, int) override { return false; }
|
||||
bool store_datetime(MYSQL_TIME *, int) override { return false; }
|
||||
bool store_date(MYSQL_TIME *) override { return false; }
|
||||
bool store_time(MYSQL_TIME *, int) override { return false; }
|
||||
bool store_float(float, uint32) override { return false; }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue