mirror of
https://github.com/MariaDB/server.git
synced 2026-05-15 19:37:16 +02:00
RIGHT JOIN, part of automatic repair of MyISAM tables, backup on repair,
reading from FIFO, fixes for FULLTEXT, @@IDENTITY
This commit is contained in:
parent
50486eeb80
commit
e32799e4dd
83 changed files with 391 additions and 200 deletions
|
|
@ -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 */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue