1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-27 18:02:13 +03:00

bugfix: engine defined table options were not showing up in INFORMATION_SCHEMA.TABLES.CREATE_OPTIONS

This commit is contained in:
Sergei Golubchik
2010-10-24 20:47:01 +02:00
parent 3c9dcf9da7
commit 62d31f675d
5 changed files with 46 additions and 25 deletions

View File

@ -687,10 +687,10 @@ void String::qs_append(int i)
str_length+= (int) (end-buff);
}
void String::qs_append(uint i)
void String::qs_append(ulonglong i)
{
char *buff= Ptr + str_length;
char *end= int10_to_str(i, buff, 10);
char *end= longlong10_to_str(i, buff,10);
str_length+= (int) (end-buff);
}