diff options
author | monty@mashka.mysql.fi <> | 2002-12-14 17:43:01 +0200 |
---|---|---|
committer | monty@mashka.mysql.fi <> | 2002-12-14 17:43:01 +0200 |
commit | d49167bae5cfd3419261e29558bc17d2d36ad94d (patch) | |
tree | ec4419624a982054d0682faee38e3ea102cd16d9 /mysql-test/r/delayed.result | |
parent | a241d9a0f7c1a00c143adb98e2e251f324391430 (diff) | |
download | mariadb-git-d49167bae5cfd3419261e29558bc17d2d36ad94d.tar.gz |
Fixes for binary protocol (complement to last push)
Changed timestamp to return string in YYYY-MM-DD HH:MM:SS format.
DATE_ADD() and related functions now returns correct DATE/DATETIME type depending on argument types.
Now all tests passes, still some work left to remove warnings in log files from mysql-test-run
Diffstat (limited to 'mysql-test/r/delayed.result')
-rw-r--r-- | mysql-test/r/delayed.result | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mysql-test/r/delayed.result b/mysql-test/r/delayed.result index 9e375203e49..8e4b52a8366 100644 --- a/mysql-test/r/delayed.result +++ b/mysql-test/r/delayed.result @@ -12,9 +12,9 @@ select * from t1 where tmsp=0; a tmsp select * from t1 where tmsp=19711006010203; a tmsp -5 19711006010203 -6 19711006010203 -8 19711006010203 +5 1971-10-06 01:02:03 +6 1971-10-06 01:02:03 +8 1971-10-06 01:02:03 drop table t1; create table t1 (a int not null auto_increment primary key, b char(10)); insert delayed into t1 values (1,"b"); |