diff --git a/mysql-test/r/select.result b/mysql-test/r/select.result index 9d156cb3266..413b03130f6 100644 --- a/mysql-test/r/select.result +++ b/mysql-test/r/select.result @@ -1768,7 +1768,6 @@ summa Nuvarande period 9410 Tables_in_test -m t1 t2 t3 diff --git a/sql/net_pkg.cc b/sql/net_pkg.cc index caee12dc6f2..073c716d793 100644 --- a/sql/net_pkg.cc +++ b/sql/net_pkg.cc @@ -349,7 +349,7 @@ net_store_data(String *packet,CONVERT *convert, const char *from,uint length) { if (convert) return convert->store(packet, from, length); - return net_store_date(packet,from,length); + return net_store_data(packet,from,length); } bool @@ -358,5 +358,5 @@ net_store_data(String *packet, CONVERT *convert, const char *from) uint length=(uint) strlen(from); if (convert) return convert->store(packet, from, length); - return net_store_date(packet,from,length); + return net_store_data(packet,from,length); }