~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/union.test

  • Committer: Brian Aker
  • Date: 2009-11-18 06:24:48 UTC
  • mfrom: (1220.1.15 staging)
  • Revision ID: brian@gaz-20091118062448-o36lo3yv81sc6u9z
Merge Brian + Stewart

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
(select a,b from t1 limit 2)  union all (select a,b from t2 order by a) limit 4;
24
24
(select a,b from t1 limit 2)  union all (select a,b from t2 order by a limit 1);
25
25
(select a,b from t1 limit 2)  union all (select a,b from t2 order by a limit 1) order by b desc;
26
 
--error ER_TABLENAME_NOT_ALLOWED_HERE
 
26
--error 1250
27
27
(select a,b from t1 limit 2)  union all (select a,b from t2 order by a limit 1) order by t1.b;
28
28
--replace_column 9 #
29
29
explain extended (select a,b from t1 limit 2)  union all (select a,b from t2 order by a limit 1) order by b desc;
39
39
--replace_column 9 #
40
40
explain select a,b from t1 union all select a,b from t2;
41
41
 
42
 
--error ER_BAD_FIELD_ERROR
 
42
--error  1054
43
43
explain select xx from t1 union select 1;
44
 
--error ER_WRONG_NUMBER_OF_COLUMNS_IN_SELECT
 
44
--error 1222
45
45
explain select a,b from t1 union select 1;
46
 
--error ER_WRONG_NUMBER_OF_COLUMNS_IN_SELECT
 
46
--error 1222
47
47
explain select 1 union select a,b from t1 union select 1;
48
 
--error ER_WRONG_NUMBER_OF_COLUMNS_IN_SELECT
 
48
--error 1222
49
49
explain select a,b from t1 union select 1 limit 0;
50
50
 
51
 
--error ER_WRONG_USAGE
 
51
--error 1221
52
52
select a,b from t1 into outfile 'skr' union select a,b from t2;
53
53
 
54
 
--error ER_WRONG_USAGE
 
54
--error 1221
55
55
select a,b from t1 order by a union select a,b from t2;
56
56
 
57
 
--error ER_WRONG_USAGE
 
57
--error 1221
58
58
insert into t3 select a from t1 order by a union select a from t2;
59
59
 
60
 
--error ER_WRONG_NUMBER_OF_COLUMNS_IN_SELECT
 
60
--error 1222
61
61
create table t3 select a,b from t1 union select a from t2;
62
62
 
63
 
--error ER_WRONG_NUMBER_OF_COLUMNS_IN_SELECT
 
63
--error 1222
64
64
select a,b from t1 union select a from t2;
65
65
 
66
 
--error ER_WRONG_NUMBER_OF_COLUMNS_IN_SELECT
 
66
--error 1222
67
67
select * from t1 union select a from t2;
68
68
 
69
 
--error ER_WRONG_NUMBER_OF_COLUMNS_IN_SELECT
 
69
--error 1222
70
70
select a from t1 union select * from t2;
71
71
 
72
 
--error ER_CANT_USE_OPTION_HERE
 
72
--error 1234
73
73
select * from t1 union select SQL_BUFFER_RESULT * from t2;
74
74
 
75
75
# Test CREATE, INSERT and REPLACE
83
83
#
84
84
# Test some unions without tables
85
85
#
86
 
--error ER_NO_TABLES_USED
 
86
--error 1096
87
87
select * union select 1;
88
88
select 1 as a,(select a union select a);
89
 
--error ER_BAD_FIELD_ERROR
 
89
--error 1054
90
90
(select 1) union (select 2) order by 0;
91
91
SELECT @a:=1 UNION SELECT @a:=@a+1;
92
 
--error ER_BAD_FIELD_ERROR
 
92
--error 1054
93
93
(SELECT 1) UNION (SELECT 2) ORDER BY (SELECT a);
94
94
(SELECT 1,3) UNION (SELECT 2,1) ORDER BY (SELECT 2);
95
95
 
219
219
(SELECT SQL_CALC_FOUND_ROWS * FROM t1) UNION all (SELECT * FROM t2 LIMIT 1);
220
220
select found_rows();
221
221
# This used to work in 4.0 but not anymore in 4.1
222
 
--error ER_PARSE_ERROR
 
222
--error 1064
223
223
(SELECT SQL_CALC_FOUND_ROWS * FROM t1 LIMIT 1) UNION SELECT * FROM t2 LIMIT 1;
224
224
#select found_rows();
225
225
 
250
250
(SELECT * FROM t1 ORDER by a) UNION ALL (SELECT * FROM t2 ORDER BY a) ORDER BY A desc LIMIT 4;
251
251
 
252
252
# Wrong usage
253
 
--error ER_CANT_USE_OPTION_HERE
 
253
--error 1234
254
254
(SELECT * FROM t1) UNION all (SELECT SQL_CALC_FOUND_ROWS * FROM t2) LIMIT 1;
255
255
 
256
256
create temporary table t1 select a from t1 union select a from t2;
257
257
drop temporary table t1;
258
 
--error ER_UPDATE_TABLE_USED
 
258
--error 1093
259
259
create table t1 select a from t1 union select a from t2;
260
 
--error ER_BAD_FIELD_ERROR
 
260
--error 1054
261
261
select a from t1 union select a from t2 order by t2.a;
262
262
drop table t1,t2;
263
263
 
316
316
insert into t2 (group_name) values ('Group A');
317
317
insert into t2 (group_name) values ('Group B');
318
318
insert into t3 (user_id, group_id) values (1,1);
319
 
select 1 'is_in_group', a.user_name, c.group_name, b.id from t1 a, t3 b, t2 c where a.id = b.user_id and b.group_id = c.id UNION  select 0 'is_in_group', a.user_name, c.group_name, null from t1 a CROSS JOIN t2 c;
 
319
select 1 'is_in_group', a.user_name, c.group_name, b.id from t1 a, t3 b, t2 c where a.id = b.user_id and b.group_id = c.id UNION  select 0 'is_in_group', a.user_name, c.group_name, null from t1 a, t2 c;
320
320
drop table t3, t1, t2;
321
321
 
322
322
#
436
436
--replace_regex /ENGINE=[a-zA-Z]+/ENGINE=DEFAULT/
437
437
show create table t1;
438
438
drop table t1;
439
 
--error ER_BAD_FIELD_ERROR
 
439
-- error 1054
440
440
create table t1 select _latin1"test" union select _latin1"testt" ;
441
 
--error ER_BAD_FIELD_ERROR
 
441
-- error 1054
442
442
create table t1 select _utf8"test" union select _utf8"testt" ;
443
443
create table t1 select "test" union select "testt" ;
444
444
--replace_regex /ENGINE=[a-zA-Z]+/ENGINE=DEFAULT/
457
457
insert into t1 select * from t2;
458
458
insert into t2 select * from t1;
459
459
set local tmp_table_size=1024;
460
 
select SQL_BIG_RESULT count(*) from (select SQL_BIG_RESULT * from t1 union all select * from t2 order by 1) b;
 
460
select count(*) from (select * from t1 union all select * from t2 order by 1) b;
461
461
select count(*) from t1;
462
462
select count(*) from t2;
463
463
drop table t1,t2;
474
474
insert t1 select a+1, a+b from t1;
475
475
insert t1 select a+1, a+b from t1;
476
476
FLUSH STATUS;
477
 
--replace_column 2 #
478
477
show status like 'Slow_queries';
479
478
select count(*) from t1 where a=7;
480
 
--replace_column 2 #
481
479
show status like 'Slow_queries';
482
480
select count(*) from t1 where b=13;
483
 
--replace_column 2 #
484
481
show status like 'Slow_queries';
485
482
select count(*) from t1 where b=13 union select count(*) from t1 where a=7;
486
 
--replace_column 2 #
487
483
show status like 'Slow_queries';
488
484
select count(*) from t1 where a=7 union select count(*) from t1 where b=13;
489
 
--replace_column 2 #
490
485
show status like 'Slow_queries';
491
486
# additional test for examined rows
492
487
flush status;
493
488
select a from t1 where b not in (1,2,3) union select a from t1 where b not in (4,5,6); 
494
 
--replace_column 2 #
495
489
show status like 'Slow_queries';
496
490
drop table t1;
497
491
 
548
542
#
549
543
CREATE TABLE t1 (i int default NULL,c char(1) default NULL,KEY i (i));
550
544
CREATE TABLE t2 (i int default NULL,c char(1) default NULL,KEY i (i));
551
 
--error ER_BAD_FIELD_ERROR
 
545
--error 1054
552
546
explain (select * from t1) union (select * from t2) order by not_existing_column;
553
547
drop table t1, t2;
554
548
 
602
596
create table t3 (a ENUM('Yes', 'No') NOT NULL);
603
597
create table t4 (a ENUM('aaa', 'bbb') NOT NULL);
604
598
insert into t3 values (1);
605
 
--error ER_INVALID_ENUM_VALUE # Bad enum
 
599
--error 1691 # Bad enum
606
600
insert into t4 values (3);
607
601
select "1" as a union select a from t1;
608
602
select a as a from t1 union select "1";
653
647
drop table t1;
654
648
 
655
649
# Drizzle doesn't support specifying character set, it is all UTF8
656
 
--error ER_PARSE_ERROR
 
650
--error 1064
657
651
create table t2 (
658
652
a char character set utf8 collate utf8_swedish_ci,
659
653
b char character set utf8 collate utf8_spanish_ci);
661
655
create table t2 (
662
656
a char collate utf8_swedish_ci,
663
657
b char collate utf8_spanish_ci);
664
 
--error ER_CANT_AGGREGATE_NCOLLATIONS
 
658
--error 1271
665
659
create table t1 as
666
660
(select a from t2) union
667
661
(select b from t2);
668
662
 
669
 
--error ER_WRONG_COLUMN_NAME
 
663
--error 1166
670
664
create table t1 as
671
665
(select a collate utf8_swedish_ci from t2) union
672
666
(select b from t2);
746
740
# Bug#15949 union + illegal mix of collations (IMPLICIT + COERCIBLE)
747
741
#
748
742
select concat('a', 'b' collate utf8_bin);
749
 
create table t1 (foo varchar(100)) collate=utf8_bin;
 
743
create table t1 (foo varchar(100)) collate utf8_bin;
750
744
insert into t1 (foo) values ("foo");
751
 
--error ER_TABLE_UNKNOWN
 
745
--error 1146
752
746
select foo from t1 union select 'bar' as foo from dual;
753
747
select foo from t1 union select 'bar' as foo;
754
748
drop table t1;
807
801
create table t2 select * from t1 union select 'abcdefghijkl';
808
802
--replace_regex /ENGINE=[a-zA-Z]+/ENGINE=DEFAULT/
809
803
show create table t2;
810
 
select row_format from data_dictionary.TABLES where table_schema="test" and table_name="t2";
 
804
select row_format from information_schema.TABLES where table_schema="test" and table_name="t2";
 
805
alter table t2 ROW_FORMAT=fixed;
811
806
--replace_regex /ENGINE=[a-zA-Z]+/ENGINE=DEFAULT/
812
807
show create table t2;
813
808
drop table t1,t2;
956
951
INSERT INTO t1 VALUES (3),(1),(2),(4),(1);
957
952
 
958
953
SELECT a FROM (SELECT a FROM t1 UNION SELECT a FROM t1 ORDER BY a) AS test;
959
 
--error ER_BAD_FIELD_ERROR 
 
954
--error 1054 
960
955
SELECT a FROM (SELECT a FROM t1 UNION SELECT a FROM t1 ORDER BY c) AS test;
961
956
 
962
957
DROP TABLE t1;
964
959
#
965
960
# Bug#23345: Wrongly allowed INTO in a non-last select of a UNION.
966
961
#
967
 
--error ER_WRONG_USAGE
 
962
--error 1221
968
963
(select 1 into @var) union (select 1);
969
964
(select 1) union (select 1 into @var);
970
965
select @var;
971
 
--error ER_TOO_MANY_ROWS
 
966
--error 1172
972
967
(select 2) union (select 1 into @var);
973
968
 
974
969
#