Commit 64ed3570 authored by monty@mashka.mysql.fi's avatar monty@mashka.mysql.fi

Fix after merge

parent d783e184
...@@ -579,3 +579,4 @@ vio/test-ssl ...@@ -579,3 +579,4 @@ vio/test-ssl
vio/test-sslclient vio/test-sslclient
vio/test-sslserver vio/test-sslserver
vio/viotest-ssl vio/viotest-ssl
libmysqld/protocol.cc
...@@ -137,7 +137,7 @@ class Item_wrapper :public Item ...@@ -137,7 +137,7 @@ class Item_wrapper :public Item
{ {
return (null_value=item->get_date(ltime, fuzzydate)); return (null_value=item->get_date(ltime, fuzzydate));
} }
bool send(THD *thd, String *tmp) { return item->send(thd, tmp); } bool send(Protocol *prot, String *tmp) { return item->send(prot, tmp); }
int save_in_field(Field *field, bool no_conversions) int save_in_field(Field *field, bool no_conversions)
{ {
return item->save_in_field(field, no_conversions); return item->save_in_field(field, no_conversions);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment