mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
Fixed typos from prev changeset
mysql-test/r/select.result: Fixed sql/net_pkg.cc: Fixed typo
This commit is contained in:
@@ -1768,7 +1768,6 @@ summa
|
|||||||
Nuvarande period
|
Nuvarande period
|
||||||
9410
|
9410
|
||||||
Tables_in_test
|
Tables_in_test
|
||||||
m
|
|
||||||
t1
|
t1
|
||||||
t2
|
t2
|
||||||
t3
|
t3
|
||||||
|
@@ -349,7 +349,7 @@ net_store_data(String *packet,CONVERT *convert, const char *from,uint length)
|
|||||||
{
|
{
|
||||||
if (convert)
|
if (convert)
|
||||||
return convert->store(packet, from, length);
|
return convert->store(packet, from, length);
|
||||||
return net_store_date(packet,from,length);
|
return net_store_data(packet,from,length);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool
|
bool
|
||||||
@@ -358,5 +358,5 @@ net_store_data(String *packet, CONVERT *convert, const char *from)
|
|||||||
uint length=(uint) strlen(from);
|
uint length=(uint) strlen(from);
|
||||||
if (convert)
|
if (convert)
|
||||||
return convert->store(packet, from, length);
|
return convert->store(packet, from, length);
|
||||||
return net_store_date(packet,from,length);
|
return net_store_data(packet,from,length);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user