diff options
author | monty@mysql.com/narttu.mysql.fi <> | 2007-01-22 21:19:56 +0200 |
---|---|---|
committer | monty@mysql.com/narttu.mysql.fi <> | 2007-01-22 21:19:56 +0200 |
commit | 33f8a2c5d737b1500df5fc37f6b62680aee6fc4d (patch) | |
tree | 59d53b2882c5c7bffc502b0bac1ed684cde0a447 /mysql-test/t/view.test | |
parent | 7df1dbcd74c3827b605c7c9b570e3d98a8e9f842 (diff) | |
download | mariadb-git-33f8a2c5d737b1500df5fc37f6b62680aee6fc4d.tar.gz |
Change to new (after merge) error numbers
Diffstat (limited to 'mysql-test/t/view.test')
-rw-r--r-- | mysql-test/t/view.test | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mysql-test/t/view.test b/mysql-test/t/view.test index b75e690e677..3c5308a935c 100644 --- a/mysql-test/t/view.test +++ b/mysql-test/t/view.test @@ -2544,9 +2544,9 @@ CREATE TABLE t1( uID int unsigned NOT NULL AUTO_INCREMENT PRIMARY KEY); INSERT INTO t1(fName, lName, DOB) VALUES - ('Alice', 'Hill', date_sub(curdate(), interval 15271 day)), - ('Bob', 'Adams', date_sub(curdate(), interval 33600 day)), - ('Carol', 'Simpson', date_sub(curdate(), interval 13700 day)); + ('Hank', 'Hill', '1964-09-29'), + ('Tom', 'Adams', '1908-02-14'), + ('Homer', 'Simpson', '1968-03-05'); CREATE VIEW v1 AS SELECT (year(now())-year(DOB)) AS Age |