RIGHT JOIN, part of automatic repair of MyISAM tables, backup on repair,

reading from FIFO, fixes for FULLTEXT, @@IDENTITY
This commit is contained in:
monty@tramp.mysql.fi 2000-09-26 00:33:25 +03:00
commit e32799e4dd
83 changed files with 391 additions and 200 deletions

View file

@ -23,6 +23,7 @@
/*
If flag & 1 Return date and time
If flag & 2 Return short date format YYMMDD
if flag & 4 Return time in HHMMDD format.
*/
@ -56,4 +57,9 @@ void get_date(register my_string to, int flag, time_t date)
start_time->tm_hour,
start_time->tm_min,
start_time->tm_sec);
else if (flag & 4)
sprintf(strend(to),"%02d%02d%02d",
start_time->tm_hour,
start_time->tm_min,
start_time->tm_sec);
} /* get_date */