diff options
author | monty@hundin.mysql.fi <> | 2001-06-19 14:30:12 +0300 |
---|---|---|
committer | monty@hundin.mysql.fi <> | 2001-06-19 14:30:12 +0300 |
commit | 72fb81e888b5c5f9c1c7917709568d61cfb6663f (patch) | |
tree | 884d89c2f53eae988fe08259ab2953720d274ab2 /sql/time.cc | |
parent | 16d50ca46d41060240dffc761f12144395150ff6 (diff) | |
download | mariadb-git-72fb81e888b5c5f9c1c7917709568d61cfb6663f.tar.gz |
Fixed bug in mysqlcheck when using --fast
Fixed problem when converting bigint to double.
Fixed bug in count(distinct null)
Fixed bug with empty BDB tables.
Diffstat (limited to 'sql/time.cc')
-rw-r--r-- | sql/time.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/time.cc b/sql/time.cc index 086977af72f..e0b74fc9d25 100644 --- a/sql/time.cc +++ b/sql/time.cc @@ -455,8 +455,8 @@ str_to_TIME(const char *str, uint length, TIME *l_time,bool fuzzy_date) if ((date[i]=tmp_value)) date_used=1; // Found something if (i == 2 && str != end && *str == 'T') - str++; // ISO8601: CCYYMMDDThhmmss - else + str++; // ISO8601: CCYYMMDDThhmmss + else if ( i != 5 ) // Skip inter-field delimiters { while (str != end && (ispunct(*str) || isspace(*str))) { |