Skip to content

Commit

Permalink
Follow-up for the previous commit - result change for a big test
Browse files Browse the repository at this point in the history
  • Loading branch information
elenst committed May 29, 2016
1 parent 7166069 commit 7013f86
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mysql-test/suite/funcs_1/r/myisam_views-big.result
Original file line number Diff line number Diff line change
Expand Up @@ -4006,7 +4006,7 @@ Select @x;
0
CREATE or REPLACE VIEW v1 AS Select 1
FROM (SELECT 1 FROM t1) my_table;
ERROR HY000: View's SELECT contains a subquery in the FROM clause
DROP VIEW v1;
CREATE VIEW v1 AS SELECT f1 FROM t1;
CREATE TRIGGER tr1 BEFORE INSERT ON t1 FOR EACH ROW SET @a:=1 ;
SET @a:=0 ;
Expand Down Expand Up @@ -8356,7 +8356,7 @@ Testcase 3.3.1.39
Drop view if exists test.v1 ;
CREATE VIEW test.v1
AS Select f59 from (Select * FROM tb2 limit 20) tx ;
ERROR HY000: View's SELECT contains a subquery in the FROM clause
DROP VIEW test.v1;
SELECT * FROM test.v1 order by f59 ;
ERROR 42S02: Table 'test.v1' doesn't exist
Drop view if exists test.v1 ;
Expand Down

0 comments on commit 7013f86

Please sign in to comment.