mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Adding a necessary functionality to ::store and ::save_in_field
that will take place properly after pull from 4.0, in order to handle conversions from quoted constants to bigint's.
This commit is contained in:
@ -338,7 +338,7 @@ public:
|
||||
{}
|
||||
bool copy()
|
||||
{
|
||||
item->save_in_field(to_field);
|
||||
(void) item->save_in_field(to_field);
|
||||
return err != 0;
|
||||
}
|
||||
const char *name() const { return "func"; }
|
||||
@ -362,7 +362,7 @@ public:
|
||||
if (!inited)
|
||||
{
|
||||
inited=1;
|
||||
item->save_in_field(to_field);
|
||||
(void)item->save_in_field(to_field);
|
||||
}
|
||||
return err != 0;
|
||||
}
|
||||
|
Reference in New Issue
Block a user