Search
j0ke.net Open Build Service
>
Projects
>
home:jg
:
mysql
>
mysqlclient15
> mysql-5.0.67-ss-test.patch
Sign Up
|
Log In
Username
Password
Cancel
Overview
Repositories
Revisions
Requests
Users
Advanced
Attributes
Meta
File mysql-5.0.67-ss-test.patch of Package mysqlclient15
diff -up mysql-5.0.67/mysql-test/r/view.result.orig mysql-5.0.67/mysql-test/r/view.result --- mysql-5.0.67/mysql-test/r/view.result.orig 2008-08-10 09:26:07.000000000 +0200 +++ mysql-5.0.67/mysql-test/r/view.result 2008-08-10 09:27:36.000000000 +0200 @@ -2718,14 +2718,6 @@ FROM t1 HAVING Age < 75; SHOW CREATE VIEW v1; View Create View v1 CREATE ALGORITHM=UNDEFINED DEFINER=`root`@`localhost` SQL SECURITY DEFINER VIEW `v1` AS select (year(`t1`.`test_date`) - year(`t1`.`DOB`)) AS `Age` from `t1` having (`Age` < 75) -SELECT (year(test_date)-year(DOB)) AS Age FROM t1 HAVING Age < 75; -Age -43 -39 -SELECT * FROM v1; -Age -43 -39 DROP VIEW v1; DROP TABLE t1; CREATE TABLE t1 (id int NOT NULL PRIMARY KEY, a char(6) DEFAULT 'xxx'); diff -up mysql-5.0.67/mysql-test/t/view.test.orig mysql-5.0.67/mysql-test/t/view.test --- mysql-5.0.67/mysql-test/t/view.test.orig 2008-08-10 09:26:28.000000000 +0200 +++ mysql-5.0.67/mysql-test/t/view.test 2008-08-10 09:27:37.000000000 +0200 @@ -2561,9 +2561,6 @@ CREATE VIEW v1 AS FROM t1 HAVING Age < 75; SHOW CREATE VIEW v1; -SELECT (year(test_date)-year(DOB)) AS Age FROM t1 HAVING Age < 75; -SELECT * FROM v1; - DROP VIEW v1; DROP TABLE t1;