mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Auto-merge from mysql-5.1.
This commit is contained in:
@ -1,4 +1,4 @@
|
||||
[MYSQL]
|
||||
post_commit_to = "commits@lists.mysql.com"
|
||||
post_push_to = "commits@lists.mysql.com"
|
||||
tree_name = "mysql-trunk-bugfixing"
|
||||
tree_name = "mysql-trunk"
|
||||
|
@ -71,7 +71,6 @@ sub main
|
||||
print "WARNING: --config-file is deprecated and will be removed\n";
|
||||
print "in MySQL 5.6. Please use --defaults-extra-file instead\n";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
foreach (@defaults_options)
|
||||
|
@ -876,7 +876,7 @@ static bool get_interval_info(const char *str,uint length,CHARSET_INFO *cs,
|
||||
value= value*LL(10) + (longlong) (*str - '0');
|
||||
if (transform_msec && i == count - 1) // microseconds always last
|
||||
{
|
||||
int msec_length= 6 - (int)(str - start);
|
||||
int msec_length= 6 - (int) (str - start);
|
||||
if (msec_length > 0)
|
||||
value*= (long)log_10_int[msec_length];
|
||||
}
|
||||
|
Reference in New Issue
Block a user