diff options
author | Sergei Golubchik <serg@mariadb.org> | 2018-03-11 16:41:56 +0100 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2018-03-14 12:40:00 +0100 |
commit | 75ac5789b4f6b0b3c95829130c7865247d0e7edc (patch) | |
tree | 078ffcb643c07e2810fc8c983f3af6fb45711e79 /mysql-test/r | |
parent | bf1ca14ff3f3faa9f7a018097b25aa0f66d068cd (diff) | |
download | mariadb-git-75ac5789b4f6b0b3c95829130c7865247d0e7edc.tar.gz |
cleanup: typos, comments, whitespace
Diffstat (limited to 'mysql-test/r')
-rw-r--r-- | mysql-test/r/type_time.result | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/type_time.result b/mysql-test/r/type_time.result index 8b80177104d..0e627bdb915 100644 --- a/mysql-test/r/type_time.result +++ b/mysql-test/r/type_time.result @@ -822,7 +822,7 @@ id select_type table type possible_keys key key_len ref rows filtered Extra 1 SIMPLE t1 ALL NULL NULL NULL NULL 8 100.00 Using where Warnings: Note 1003 select `test`.`t1`.`a` AS `a` from `test`.`t1` where `test`.`t1`.`a` = TIME'10:20:30' and <cache>(length(TIME'10:20:30')) = 30 + rand() -# Old mode, TIMESTAMP literal, zon-zero YYYYMMDD, no propagation +# Old mode, TIMESTAMP literal, non-zero YYYYMMDD, no propagation SELECT * FROM t1 WHERE a=TIMESTAMP'0000-00-01 10:20:30'; a 34:20:30 @@ -860,7 +860,7 @@ id select_type table type possible_keys key key_len ref rows filtered Extra 1 SIMPLE t1 ALL NULL NULL NULL NULL 8 100.00 Using where Warnings: Note 1003 select `test`.`t1`.`a` AS `a` from `test`.`t1` where `test`.`t1`.`a` = TIME'10:20:30' and <cache>(length(TIME'10:20:30')) = 30 + rand() -# Old mode, TIMESTAMP-alike literal, zon-zero YYYYMMDD, no propagation +# Old mode, TIMESTAMP-alike literal, non-zero YYYYMMDD, no propagation SELECT * FROM t1 WHERE a='0000-00-01 10:20:30'; a 34:20:30 |