~ubuntu-branches/ubuntu/maverick/mysql-5.1/maverick-proposed

« back to all changes in this revision

Viewing changes to mysql-test/r/view.result

  • Committer: Package Import Robot
  • Author(s): Marc Deslauriers
  • Date: 2012-02-22 14:16:05 UTC
  • mto: This revision was merged to the branch mainline in revision 20.
  • Revision ID: package-import@ubuntu.com-20120222141605-nxlu9yzc6attylc2
Tags: upstream-5.1.61
ImportĀ upstreamĀ versionĀ 5.1.61

Show diffs side-by-side

added added

removed removed

Lines of Context:
840
840
Name    Engine  Version Row_format      Rows    Avg_row_length  Data_length     Max_data_length Index_length    Data_free       Auto_increment  Create_time     Update_time     Check_time      Collation       Checksum        Create_options  Comment
841
841
t1      MyISAM  10      Fixed   0       0       0       #       1024    0       NULL    #       #       NULL    latin1_swedish_ci       NULL            
842
842
v1      NULL    NULL    NULL    NULL    NULL    NULL    #       NULL    NULL    NULL    #       #       NULL    NULL    NULL    NULL    View 'test.v1' references invalid table(s) or column(s) or function(s) or define
 
843
Warnings:
 
844
Warning 1356    View 'test.v1' references invalid table(s) or column(s) or function(s) or definer/invoker of view lack rights to use them
843
845
drop view v1;
844
846
drop table t1;
845
847
create view v1 as select 99999999999999999999999999999999999999999999999999999 as col1;
3882
3884
WHERE t1.b <=> (SELECT a FROM t1 WHERE a < SOME(SELECT '1'));
3883
3885
DROP VIEW v1;
3884
3886
DROP TABLE t1;
 
3887
#
 
3888
# Bug#57703 create view cause Assertion failed: 0, file .\item_subselect.cc, line 846
 
3889
#
 
3890
CREATE TABLE t1(a int);
 
3891
CREATE VIEW v1 AS SELECT 1 FROM t1 GROUP BY
 
3892
SUBSTRING(1 FROM (SELECT 3 FROM t1 WHERE a >= ANY(SELECT 1)));
 
3893
DROP VIEW v1;
 
3894
DROP TABLE t1;
 
3895
#
 
3896
# Bug#57352 valgrind warnings when creating view
 
3897
#
 
3898
CREATE VIEW v1 AS SELECT 1 IN (1 LIKE 2,0) AS f;
 
3899
DROP VIEW v1;
 
3900
#
 
3901
# Bug 11829681 - 60295: ERROR 1356 ON VIEW THAT EXECUTES FINE AS A QUERY
 
3902
#
 
3903
CREATE TABLE t1 (a INT);
 
3904
CREATE VIEW v1 AS SELECT s.* FROM t1 s, t1 b HAVING a;
 
3905
SELECT * FROM v1;
 
3906
a
 
3907
DROP VIEW v1;
 
3908
DROP TABLE t1;
3885
3909
# -----------------------------------------------------------------
3886
3910
# -- End of 5.1 tests.
3887
3911
# -----------------------------------------------------------------