1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Lots of manual changes

Changed 'static inline' to 'inline' for SCO new's compiler
This commit is contained in:
monty@donna.mysql.com
2001-01-25 22:38:26 +02:00
parent 21185c1719
commit e2a8a99d01
11 changed files with 500 additions and 322 deletions

View File

@ -187,7 +187,8 @@ query_table_status(THD *thd,const char *db,const char *table_name)
** Sum fields has table name empty and field_name.
** flag is a bit mask with the following functions:
** 1 send number of rows
** 2 send default values; Don't convert field names
** 2 send default values
** 4 Don't convert field names
******************************************************************************/
bool
@ -196,7 +197,7 @@ send_fields(THD *thd,List<Item> &list,uint flag)
List_iterator<Item> it(list);
Item *item;
char buff[80];
CONVERT *convert= (flag & 2) ? (CONVERT*) 0 : thd->convert_set;
CONVERT *convert= (flag & 4) ? (CONVERT*) 0 : thd->convert_set;
String tmp((char*) buff,sizeof(buff)),*res,*packet= &thd->packet;