diff --git a/mysql-test/columnstore/basic/r/mcol641-delete.result b/mysql-test/columnstore/basic/r/mcol641-delete.result index b28316840..198ff4d39 100644 --- a/mysql-test/columnstore/basic/r/mcol641-delete.result +++ b/mysql-test/columnstore/basic/r/mcol641-delete.result @@ -2,17 +2,9 @@ DROP DATABASE IF EXISTS mcol641_delete_db; CREATE DATABASE mcol641_delete_db; USE mcol641_delete_db; DROP PROCEDURE IF EXISTS signedinsertproc; -Warnings: -Note 1305 PROCEDURE mcol641_delete_db.signedinsertproc does not exist DROP PROCEDURE IF EXISTS signeddeleteproc; -Warnings: -Note 1305 PROCEDURE mcol641_delete_db.signeddeleteproc does not exist DROP PROCEDURE IF EXISTS unsignedinsertproc; -Warnings: -Note 1305 PROCEDURE mcol641_delete_db.unsignedinsertproc does not exist DROP PROCEDURE IF EXISTS unsigneddeleteproc; -Warnings: -Note 1305 PROCEDURE mcol641_delete_db.unsigneddeleteproc does not exist CREATE PROCEDURE signedinsertproc () BEGIN INSERT INTO cs1 VALUES (125, 125); @@ -89,23 +81,11 @@ DELETE FROM cs5; DELETE FROM cs6; END// DROP TABLE IF EXISTS cs1; -Warnings: -Note 1051 Unknown table 'mcol641_delete_db.cs1' DROP TABLE IF EXISTS cs2; -Warnings: -Note 1051 Unknown table 'mcol641_delete_db.cs2' DROP TABLE IF EXISTS cs3; -Warnings: -Note 1051 Unknown table 'mcol641_delete_db.cs3' DROP TABLE IF EXISTS cs4; -Warnings: -Note 1051 Unknown table 'mcol641_delete_db.cs4' DROP TABLE IF EXISTS cs5; -Warnings: -Note 1051 Unknown table 'mcol641_delete_db.cs5' DROP TABLE IF EXISTS cs6; -Warnings: -Note 1051 Unknown table 'mcol641_delete_db.cs6' CREATE TABLE cs1 (d1 DECIMAL(38), d2 DECIMAL(19)) ENGINE=columnstore; CREATE TABLE cs2 (d1 DECIMAL(38,10), d2 DECIMAL(19,10)) ENGINE=columnstore; CREATE TABLE cs3 (d1 DECIMAL(38,38), d2 DECIMAL(19,19)) ENGINE=columnstore; diff --git a/mysql-test/columnstore/basic/r/mcol641-update.result b/mysql-test/columnstore/basic/r/mcol641-update.result index 3a0bb0717..ff9e49230 100644 --- a/mysql-test/columnstore/basic/r/mcol641-update.result +++ b/mysql-test/columnstore/basic/r/mcol641-update.result @@ -2,17 +2,9 @@ DROP DATABASE IF EXISTS mcol641_update_db; CREATE DATABASE mcol641_update_db; USE mcol641_update_db; DROP PROCEDURE IF EXISTS signedinsertproc; -Warnings: -Note 1305 PROCEDURE mcol641_update_db.signedinsertproc does not exist DROP PROCEDURE IF EXISTS signeddeleteproc; -Warnings: -Note 1305 PROCEDURE mcol641_update_db.signeddeleteproc does not exist DROP PROCEDURE IF EXISTS unsignedinsertproc; -Warnings: -Note 1305 PROCEDURE mcol641_update_db.unsignedinsertproc does not exist DROP PROCEDURE IF EXISTS unsigneddeleteproc; -Warnings: -Note 1305 PROCEDURE mcol641_update_db.unsigneddeleteproc does not exist CREATE PROCEDURE signedinsertproc () BEGIN INSERT INTO cs1 VALUES (125, 125); @@ -89,23 +81,11 @@ DELETE FROM cs5; DELETE FROM cs6; END// DROP TABLE IF EXISTS cs1; -Warnings: -Note 1051 Unknown table 'mcol641_update_db.cs1' DROP TABLE IF EXISTS cs2; -Warnings: -Note 1051 Unknown table 'mcol641_update_db.cs2' DROP TABLE IF EXISTS cs3; -Warnings: -Note 1051 Unknown table 'mcol641_update_db.cs3' DROP TABLE IF EXISTS cs4; -Warnings: -Note 1051 Unknown table 'mcol641_update_db.cs4' DROP TABLE IF EXISTS cs5; -Warnings: -Note 1051 Unknown table 'mcol641_update_db.cs5' DROP TABLE IF EXISTS cs6; -Warnings: -Note 1051 Unknown table 'mcol641_update_db.cs6' CREATE TABLE cs1 (d1 DECIMAL(38), d2 DECIMAL(19)) ENGINE=columnstore; CREATE TABLE cs2 (d1 DECIMAL(38,10), d2 DECIMAL(19,10)) ENGINE=columnstore; CREATE TABLE cs3 (d1 DECIMAL(38,38), d2 DECIMAL(19,19)) ENGINE=columnstore; diff --git a/mysql-test/columnstore/basic/r/unsigned_bug5712.result b/mysql-test/columnstore/basic/r/unsigned_bug5712.result index e54c40fbc..2748bbcd4 100644 --- a/mysql-test/columnstore/basic/r/unsigned_bug5712.result +++ b/mysql-test/columnstore/basic/r/unsigned_bug5712.result @@ -2,8 +2,6 @@ DROP DATABASE IF EXISTS unsigned_bug5712_db; CREATE DATABASE unsigned_bug5712_db; USE unsigned_bug5712_db; DROP TABLE IF EXISTS bug5712; -Warnings: -Note 1051 Unknown table 'unsigned_bug5712_db.bug5712' CREATE TABLE bug5712 (`time_tk` INT(11) UNSIGNED NOT NULL) ENGINE=Columnstore DEFAULT CHARSET=latin1; INSERT INTO bug5712 VALUES (2013113023), diff --git a/mysql-test/columnstore/bugfixes/mcol-3721.result b/mysql-test/columnstore/bugfixes/mcol-3721.result index 76c3627de..f64a1c310 100644 --- a/mysql-test/columnstore/bugfixes/mcol-3721.result +++ b/mysql-test/columnstore/bugfixes/mcol-3721.result @@ -6,8 +6,6 @@ SELECT @cs_conn := @@character_set_connection; latin1 SET character_set_connection=latin1; DROP TABLE IF EXISTS test_collate; -Warnings: -Note 1051 Unknown table 'mcol_3721.test_collate' CREATE TABLE test_collate (a INT, b INT) ENGINE=columnstore; INSERT INTO test_collate VALUES (1,2), (2,4); SELECT a, b FROM test_collate ORDER BY a COLLATE latin1_german2_ci; @@ -43,9 +41,6 @@ DESCRIBE t1; Field Type Null Key Default Extra col1 char(10) YES NULL DROP TABLE IF EXISTS t1; -DROP TABLE IF EXISTS t1; -Warnings: -Note 1051 Unknown table 'mcol_3721.t1' CREATE TABLE t1 (col1 CHAR(10) CHARACTER SET utf8 COLLATE utf8_unicode_ci) ENGINE=columnstore; INSERT INTO t1 VALUES ('a'), ('1'), ('-1'); SELECT col1 FROM t1; diff --git a/mysql-test/columnstore/devregression/r/mcs7012_regression_bug2788.result b/mysql-test/columnstore/devregression/r/mcs7012_regression_bug2788.result index 7c9e5f6a1..bb34b3841 100644 --- a/mysql-test/columnstore/devregression/r/mcs7012_regression_bug2788.result +++ b/mysql-test/columnstore/devregression/r/mcs7012_regression_bug2788.result @@ -1,6 +1,4 @@ USE tpch1; drop table if exists foo; -Warnings: -Note 1051 Unknown table 'tpch1.foo' create table foo (col1 int(11) null default null) engine=columnstore; drop table foo; diff --git a/mysql-test/columnstore/devregression/r/mcs7015_regression_bug2835.result b/mysql-test/columnstore/devregression/r/mcs7015_regression_bug2835.result index 2151e635a..60f35ab3e 100644 --- a/mysql-test/columnstore/devregression/r/mcs7015_regression_bug2835.result +++ b/mysql-test/columnstore/devregression/r/mcs7015_regression_bug2835.result @@ -1,7 +1,5 @@ USE tpch1; drop table if exists bug2835; -Warnings: -Note 1051 Unknown table 'tpch1.bug2835' create table bug2835 (c1 int, c2 varchar(6), c3 varchar(20), c4 datetime)engine=columnstore; insert into bug2835 values (1, 'one', 'one', '2010-01-01'), (2, 'two', 'two', '2010-02-02'), (null, null, null, null); select c1, c2, c3, ifnull(c1,"z"), ifnull(c2,''), ifnull(c3,''), ifnull(c4,'') from bug2835; diff --git a/mysql-test/columnstore/devregression/r/mcs7017_regression_bug2845.result b/mysql-test/columnstore/devregression/r/mcs7017_regression_bug2845.result index 837340831..ed5e002c1 100644 --- a/mysql-test/columnstore/devregression/r/mcs7017_regression_bug2845.result +++ b/mysql-test/columnstore/devregression/r/mcs7017_regression_bug2845.result @@ -1,7 +1,5 @@ USE tpch1; drop table if exists bug2845; -Warnings: -Note 1051 Unknown table 'tpch1.bug2845' create table bug2845(c1 int, c2 varchar(7), c3 varchar(30))engine=columnstore; insert into bug2845 values (1, 'A\'s', 'Joe\'s'); select * from bug2845; diff --git a/mysql-test/columnstore/devregression/r/mcs7018_regression_bug2873.result b/mysql-test/columnstore/devregression/r/mcs7018_regression_bug2873.result index 4d578e6f2..59ca396bf 100644 --- a/mysql-test/columnstore/devregression/r/mcs7018_regression_bug2873.result +++ b/mysql-test/columnstore/devregression/r/mcs7018_regression_bug2873.result @@ -1,7 +1,5 @@ USE tpch1; drop table if exists bug2873; -Warnings: -Note 1051 Unknown table 'tpch1.bug2873' create table bug2873(id int, logtime int, filename varchar(20))engine=columnstore; insert into bug2873 values (1, unix_timestamp('2010-05-23 10:00:10'), 'Cam1.jpg'), diff --git a/mysql-test/columnstore/devregression/r/mcs7019_regression_bug2876.result b/mysql-test/columnstore/devregression/r/mcs7019_regression_bug2876.result index 100d5fcd1..c271752b8 100644 --- a/mysql-test/columnstore/devregression/r/mcs7019_regression_bug2876.result +++ b/mysql-test/columnstore/devregression/r/mcs7019_regression_bug2876.result @@ -1,7 +1,5 @@ USE tpch1; drop table if exists bug2876; -Warnings: -Note 1051 Unknown table 'tpch1.bug2876' create table bug2876(c1 int, c2 varchar(117))engine=columnstore; insert into bug2876 values (1, 1), (1, 2), (1, 3), (2, 1), (2, 2), (2, 3), (3, 1), (3, 2), (3, 3); insert into bug2876 values (1, null), (2, null), (3, null), (null, 1), (null, 2), (null, 3), (null, null); diff --git a/mysql-test/columnstore/devregression/r/mcs7026_regression_bug2915.result b/mysql-test/columnstore/devregression/r/mcs7026_regression_bug2915.result index 271dfc9d0..a22e2ba2a 100644 --- a/mysql-test/columnstore/devregression/r/mcs7026_regression_bug2915.result +++ b/mysql-test/columnstore/devregression/r/mcs7026_regression_bug2915.result @@ -1,10 +1,6 @@ USE tpch1; drop table if exists tbl1; -Warnings: -Note 1051 Unknown table 'tpch1.tbl1' drop table if exists tbl2; -Warnings: -Note 1051 Unknown table 'tpch1.tbl2' create table tbl1 (c1 char(1), c2 char(255))engine=columnstore; create table tbl2 (c1 char(1), c2 char(255))engine=columnstore; insert into tbl1 values (1, 1), (2, 2), (3, 3), (4, 4), (null, null); diff --git a/mysql-test/columnstore/devregression/r/mcs7035_regression_bug2976.result b/mysql-test/columnstore/devregression/r/mcs7035_regression_bug2976.result index ac69e8abe..ce255d1fb 100644 --- a/mysql-test/columnstore/devregression/r/mcs7035_regression_bug2976.result +++ b/mysql-test/columnstore/devregression/r/mcs7035_regression_bug2976.result @@ -1,13 +1,6 @@ USE tpch1; -/* -* Bug 2976. Lost connection with from clause subselect against MyISAM tables in an InfiniDB instance. -*/ drop table if exists a; -Warnings: -Note 1051 Unknown table 'tpch1.a' drop table if exists b; -Warnings: -Note 1051 Unknown table 'tpch1.b' create table a (c1 int)engine=myisam; create table b (c2 int)engine=myisam; insert into a values (1), (2); @@ -20,18 +13,9 @@ c1 c2 2 2 drop table a; drop table b; -/* -* Skinit example. -*/ drop table if exists shipamounts; -Warnings: -Note 1051 Unknown table 'tpch1.shipamounts' drop table if exists ship1; -Warnings: -Note 1051 Unknown table 'tpch1.ship1' drop table if exists ship2; -Warnings: -Note 1051 Unknown table 'tpch1.ship2' CREATE TABLE `shipamounts` ( `OrderNum` varchar(50) DEFAULT NULL, `OrderLine` int(11) DEFAULT NULL, @@ -99,27 +83,12 @@ OrderNum OrderLine ShippingAmount ShippingOrderAmount ShippingTotalAmount Shippi drop table if exists shipamounts; drop table if exists ship1; drop table if exists ship2; -/* -* Lurn India example. -*/ drop table if exists users; -Warnings: -Note 1051 Unknown table 'tpch1.users' drop table if exists user_login_log; -Warnings: -Note 1051 Unknown table 'tpch1.user_login_log' drop table if exists user_groups; -Warnings: -Note 1051 Unknown table 'tpch1.user_groups' drop table if exists user_types; -Warnings: -Note 1051 Unknown table 'tpch1.user_types' drop table if exists system; -Warnings: -Note 1051 Unknown table 'tpch1.system' drop table if exists user_system; -Warnings: -Note 1051 Unknown table 'tpch1.user_system' create table users( id int, users_id int, diff --git a/mysql-test/columnstore/devregression/r/mcs7039_regression_bug3007.result b/mysql-test/columnstore/devregression/r/mcs7039_regression_bug3007.result index eb6a11533..d9e2470e3 100644 --- a/mysql-test/columnstore/devregression/r/mcs7039_regression_bug3007.result +++ b/mysql-test/columnstore/devregression/r/mcs7039_regression_bug3007.result @@ -1,8 +1,6 @@ USE tpch1; create database if not exists bug3007; drop table if exists bug3007.bug; -Warnings: -Note 1051 Unknown table 'bug3007.bug' create table bug3007.bug(c1 int)engine=columnstore; insert into bug3007.bug values (1), (2); select * from bug3007.bug; diff --git a/mysql-test/columnstore/devregression/r/mcs7040_regression_bug3012.result b/mysql-test/columnstore/devregression/r/mcs7040_regression_bug3012.result index a46c42c70..31fe22b25 100644 --- a/mysql-test/columnstore/devregression/r/mcs7040_regression_bug3012.result +++ b/mysql-test/columnstore/devregression/r/mcs7040_regression_bug3012.result @@ -1,7 +1,5 @@ USE tpch1; drop table if exists bug3012; -Warnings: -Note 1051 Unknown table 'tpch1.bug3012' create table bug3012 (anz int, mx varchar(20)) engine=columnstore; insert into bug3012 values (1,'hotmail.com'), (2,'hotmail.com'), (3,'foo.com'), (4,'www.1and1.net'), (5,'1and1.com'); diff --git a/mysql-test/columnstore/devregression/r/mcs7042_regression_bug3021.result b/mysql-test/columnstore/devregression/r/mcs7042_regression_bug3021.result index 8de5d89d8..c476ffd6a 100644 --- a/mysql-test/columnstore/devregression/r/mcs7042_regression_bug3021.result +++ b/mysql-test/columnstore/devregression/r/mcs7042_regression_bug3021.result @@ -4,8 +4,6 @@ select @xxx; @xxx 2010-02-01 drop table if exists bug3021; -Warnings: -Note 1051 Unknown table 'tpch1.bug3021' create table bug3021(c1 date)engine=columnstore; insert into bug3021 values ('2001-01-01'); update bug3021 set c1=@xxx; diff --git a/mysql-test/columnstore/devregression/r/mcs7044_regression_bug3025.result b/mysql-test/columnstore/devregression/r/mcs7044_regression_bug3025.result index 5a9142467..58fd0f03c 100644 --- a/mysql-test/columnstore/devregression/r/mcs7044_regression_bug3025.result +++ b/mysql-test/columnstore/devregression/r/mcs7044_regression_bug3025.result @@ -1,7 +1,5 @@ USE tpch1; drop table if exists bug3025; -Warnings: -Note 1051 Unknown table 'tpch1.bug3025' create table bug3025(value integer(5)) engine=Columnstore; insert into bug3025 values (1), (1001), (24), (2123), (null), (123), (888), (8421), (231), (-100), (null); select value, IF(value<=1000,'<=1000', '>1000') diff --git a/mysql-test/columnstore/devregression/r/mcs7045_regression_bug3051.result b/mysql-test/columnstore/devregression/r/mcs7045_regression_bug3051.result index 0f1109af0..3477af1ee 100644 --- a/mysql-test/columnstore/devregression/r/mcs7045_regression_bug3051.result +++ b/mysql-test/columnstore/devregression/r/mcs7045_regression_bug3051.result @@ -1,7 +1,5 @@ USE tpch1; drop table if exists bug3051; -Warnings: -Note 1051 Unknown table 'tpch1.bug3051' CREATE TABLE `bug3051` ( `c1` int(11) DEFAULT NULL, `c2` varchar(17) DEFAULT NULL, diff --git a/mysql-test/columnstore/devregression/r/mcs7050_regression_bug3137.result b/mysql-test/columnstore/devregression/r/mcs7050_regression_bug3137.result index 816b878c8..cc7eb752c 100644 --- a/mysql-test/columnstore/devregression/r/mcs7050_regression_bug3137.result +++ b/mysql-test/columnstore/devregression/r/mcs7050_regression_bug3137.result @@ -1,7 +1,5 @@ USE tpch1; drop table if exists bug3137; -Warnings: -Note 1051 Unknown table 'tpch1.bug3137' CREATE TABLE `bug3137` ( `id` INTEGER DEFAULT NULL, `value` INTEGER DEFAULT NULL diff --git a/mysql-test/columnstore/devregression/r/mcs7055_regression_bug3203.result b/mysql-test/columnstore/devregression/r/mcs7055_regression_bug3203.result index 783f5fcbd..4bb7c1e54 100644 --- a/mysql-test/columnstore/devregression/r/mcs7055_regression_bug3203.result +++ b/mysql-test/columnstore/devregression/r/mcs7055_regression_bug3203.result @@ -1,7 +1,5 @@ USE tpch1; drop table if exists bug3203; -Warnings: -Note 1051 Unknown table 'tpch1.bug3203' create table bug3203 (c1 varchar(20))engine=columnstore; select * from bug3203 where c1 = 'x'; c1 diff --git a/mysql-test/columnstore/devregression/r/mcs7056_regression_bug3229.result b/mysql-test/columnstore/devregression/r/mcs7056_regression_bug3229.result index d84175904..09bfde8fa 100644 --- a/mysql-test/columnstore/devregression/r/mcs7056_regression_bug3229.result +++ b/mysql-test/columnstore/devregression/r/mcs7056_regression_bug3229.result @@ -1,7 +1,5 @@ USE tpch1; drop table if exists testnulldate; -Warnings: -Note 1051 Unknown table 'tpch1.testnulldate' create table testnulldate (id int, time_stamp datetime) engine=columnstore; insert into testnulldate values (1, '2010-11-08 17:46:44'); insert into testnulldate values (2, null); diff --git a/mysql-test/columnstore/devregression/r/mcs7057_regression_bug3258.result b/mysql-test/columnstore/devregression/r/mcs7057_regression_bug3258.result index 644cd64b0..2b74f7ece 100644 --- a/mysql-test/columnstore/devregression/r/mcs7057_regression_bug3258.result +++ b/mysql-test/columnstore/devregression/r/mcs7057_regression_bug3258.result @@ -1,7 +1,5 @@ USE tpch1; drop table if exists var_between; -Warnings: -Note 1051 Unknown table 'tpch1.var_between' create table var_between (c1 varchar(10), c2 char(7)) engine=columnstore; insert into var_between values ('099', '099'); insert into var_between values ('9', '9'); @@ -20,7 +18,6 @@ q3 9 9 q3 1 1 select 'q4', var_between.* from var_between where substr(c2,1,1) not between '0' and '9'; q4 c1 c2 -drop table var_between; select 'q5', count(*) from orders where substr(o_comment, 1, 1) between 'a' and 'f'; q5 count(*) q5 388241 @@ -36,3 +33,4 @@ q8 165747 select 'q9', count(*) from orders where substr(o_totalprice, 2, 3) not between '200' and '300'; q9 count(*) q9 1334253 +drop table var_between; diff --git a/mysql-test/columnstore/devregression/r/mcs7059_regression_bug3267.result b/mysql-test/columnstore/devregression/r/mcs7059_regression_bug3267.result index 1a0fc6524..a17937719 100644 --- a/mysql-test/columnstore/devregression/r/mcs7059_regression_bug3267.result +++ b/mysql-test/columnstore/devregression/r/mcs7059_regression_bug3267.result @@ -1,7 +1,5 @@ USE tpch1; drop table if exists bug3267; -Warnings: -Note 1051 Unknown table 'tpch1.bug3267' create table bug3267 (c1 decimal(12, 6), c2 float) engine=columnstore; insert into bug3267 values (5.240620, 5.24062e+06), (7.240620, 7.24062e+06), (9.940620, 9.94062e+06), (5.240620, 5.24062), (-4.44, -4.44), (-8.87, -8.87); select floor(c1), ceil(c1), c1 from bug3267; diff --git a/mysql-test/columnstore/devregression/r/mcs7060_regression_bug3270.result b/mysql-test/columnstore/devregression/r/mcs7060_regression_bug3270.result index 379ead046..520c2c178 100644 --- a/mysql-test/columnstore/devregression/r/mcs7060_regression_bug3270.result +++ b/mysql-test/columnstore/devregression/r/mcs7060_regression_bug3270.result @@ -1,7 +1,5 @@ USE tpch1; drop table if exists bug3270; -Warnings: -Note 1051 Unknown table 'tpch1.bug3270' create table bug3270 (c1 decimal(12, 6), c2 float) engine=columnstore; insert into bug3270 values (5.240620, 5.24062e+06), (7.240620, 7.24062e+06), (9.940620, 9.94062e+06), (5.240620, 5.24062), (5.240720, 5.240720), diff --git a/mysql-test/columnstore/devregression/r/mcs7061_regression_bug3272.result b/mysql-test/columnstore/devregression/r/mcs7061_regression_bug3272.result index fbb41262f..092647845 100644 --- a/mysql-test/columnstore/devregression/r/mcs7061_regression_bug3272.result +++ b/mysql-test/columnstore/devregression/r/mcs7061_regression_bug3272.result @@ -1,7 +1,5 @@ USE tpch1; drop table if exists bug3272; -Warnings: -Note 1051 Unknown table 'tpch1.bug3272' create table bug3272 (c1 float, c2 char(12)) engine=columnstore; insert into bug3272 values (5.24062, '5.24062'), (7.24062, '7.24062'), (9.94062, '9.94062'); insert into bug3272 values (-5.24062, '-5.24062'), (-7.24062, '-7.24062'), (-9.94062, '-9.94062'); diff --git a/mysql-test/columnstore/devregression/r/mcs7062_regression_bug3274.result b/mysql-test/columnstore/devregression/r/mcs7062_regression_bug3274.result index ed1fff132..57608d338 100644 --- a/mysql-test/columnstore/devregression/r/mcs7062_regression_bug3274.result +++ b/mysql-test/columnstore/devregression/r/mcs7062_regression_bug3274.result @@ -1,7 +1,5 @@ USE tpch1; drop table if exists bug3274; -Warnings: -Note 1051 Unknown table 'tpch1.bug3274' create table bug3274(d2 decimal(4,2), f float); insert into bug3274 values (43.34, 43.345), (13.54, 13.545); select d2, count(*) from bug3274 group by 1 order by 1; diff --git a/mysql-test/columnstore/devregression/r/mcs7065_regression_bug3292.result b/mysql-test/columnstore/devregression/r/mcs7065_regression_bug3292.result index 70cc321f2..cc1d8f7a7 100644 --- a/mysql-test/columnstore/devregression/r/mcs7065_regression_bug3292.result +++ b/mysql-test/columnstore/devregression/r/mcs7065_regression_bug3292.result @@ -1,7 +1,5 @@ USE tpch1; drop table if exists bug3292; -Warnings: -Note 1051 Unknown table 'tpch1.bug3292' create table bug3292 (c1 double, c2 float, c3 char(12)) engine=columnstore; insert into bug3292 values (5.24062, 5.24062, '5.24062'), diff --git a/mysql-test/columnstore/devregression/r/mcs7066_regression_bug3295.result b/mysql-test/columnstore/devregression/r/mcs7066_regression_bug3295.result index 64ddd1d45..58bff1d21 100644 --- a/mysql-test/columnstore/devregression/r/mcs7066_regression_bug3295.result +++ b/mysql-test/columnstore/devregression/r/mcs7066_regression_bug3295.result @@ -1,10 +1,6 @@ USE tpch1; drop table if exists visit; -Warnings: -Note 1051 Unknown table 'tpch1.visit' drop table if exists client; -Warnings: -Note 1051 Unknown table 'tpch1.client' create table visit (id_client integer,nb_event integer,update_date datetime, visit_date datetime) engine=columnstore; create table client (id_client integer,id_event integer,event_date datetime) engine=columnstore; insert into visit values (1,0,NULL,"2010-09-08"); diff --git a/mysql-test/columnstore/devregression/r/mcs7067_regression_bug3312.result b/mysql-test/columnstore/devregression/r/mcs7067_regression_bug3312.result index 09b9785a2..84a26ba3d 100644 --- a/mysql-test/columnstore/devregression/r/mcs7067_regression_bug3312.result +++ b/mysql-test/columnstore/devregression/r/mcs7067_regression_bug3312.result @@ -1,10 +1,6 @@ USE tpch1; drop table if exists user_prop_by_game; -Warnings: -Note 1051 Unknown table 'tpch1.user_prop_by_game' drop table if exists visit; -Warnings: -Note 1051 Unknown table 'tpch1.visit' create table user_prop_by_game(cl_id int, last_visit_date date)engine=columnstore; create table visit(cl_id int, visit_date date)engine=columnstore; insert into user_prop_by_game values (1, now()), (2, now()); diff --git a/mysql-test/columnstore/devregression/r/mcs7068_regression_bug3314.result b/mysql-test/columnstore/devregression/r/mcs7068_regression_bug3314.result index 490f44c55..5def11267 100644 --- a/mysql-test/columnstore/devregression/r/mcs7068_regression_bug3314.result +++ b/mysql-test/columnstore/devregression/r/mcs7068_regression_bug3314.result @@ -1,13 +1,7 @@ USE tpch1; drop table if exists paa; -Warnings: -Note 1051 Unknown table 'tpch1.paa' drop table if exists dates; -Warnings: -Note 1051 Unknown table 'tpch1.dates' drop table if exists t; -Warnings: -Note 1051 Unknown table 'tpch1.t' create table paa ( p_id int, a_id int, diff --git a/mysql-test/columnstore/devregression/r/mcs7070_regression_bug3333.result b/mysql-test/columnstore/devregression/r/mcs7070_regression_bug3333.result index a04c200fe..4dc75fa51 100644 --- a/mysql-test/columnstore/devregression/r/mcs7070_regression_bug3333.result +++ b/mysql-test/columnstore/devregression/r/mcs7070_regression_bug3333.result @@ -1,7 +1,5 @@ USE ssb1; drop table if exists datetest; -Warnings: -Note 1051 Unknown table 'ssb1.datetest' create table if not exists datetest (rowid int, c1 varchar(20), c2 bigint) engine=columnstore; insert into datetest values (1, "1990-10-20", 19901121), (2, "1997-01-01 10:00:05", 19970201000000), (3, "0705", 0805), (4, "20120230", 20120230),(5, "20110229", 20110229),(6, "9905", 9905),(7, "20011010888888", 20031010888888),(8, "20011011124455", 20011010122233); select 'q1', rowid, c1, c2, cast(c1 as date), cast(c2 as date) from datetest where c2 <> 0805 order by rowid; @@ -171,7 +169,6 @@ q17 5 20110229 20110229 838:59:59.999999 00:00:00 q17 6 9905 9905 NULL NULL q17 7 20011010888888 20031010888888 NULL NULL q17 8 20011011124455 20011010122233 12:44:55.000000 12:22:33 -drop table if exists datetest; select 'q18', year(lo_orderdate), month(lo_orderdate), count(*) from ssb1.lineorder group by 1, 2, 3 order by 1, 2, 3; q18 year(lo_orderdate) month(lo_orderdate) count(*) q18 1992 1 77440 @@ -254,3 +251,4 @@ q18 1998 5 77725 q18 1998 6 74584 q18 1998 7 77744 q18 1998 8 4783 +drop table if exists datetest; diff --git a/mysql-test/columnstore/devregression/r/mcs7076_regression_bug3398.result b/mysql-test/columnstore/devregression/r/mcs7076_regression_bug3398.result index eb9f450dd..c5b3c4bd9 100644 --- a/mysql-test/columnstore/devregression/r/mcs7076_regression_bug3398.result +++ b/mysql-test/columnstore/devregression/r/mcs7076_regression_bug3398.result @@ -1,10 +1,6 @@ USE tpch1; DROP TABLE IF EXISTS bug3398_1; -Warnings: -Note 1051 Unknown table 'tpch1.bug3398_1' DROP TABLE IF EXISTS bug3398_2; -Warnings: -Note 1051 Unknown table 'tpch1.bug3398_2' CREATE TABLE bug3398_1 (lid int, name char(10)) engine=columnstore; INSERT INTO bug3398_1 (lid, name) VALUES (1, 'YES'), (2, 'NO'); CREATE TABLE bug3398_2 ( id int, gid int, lid int, dt date) engine=columnstore; diff --git a/mysql-test/columnstore/devregression/r/mcs7077_regression_bug3414.result b/mysql-test/columnstore/devregression/r/mcs7077_regression_bug3414.result index 86d184314..78252ea3f 100644 --- a/mysql-test/columnstore/devregression/r/mcs7077_regression_bug3414.result +++ b/mysql-test/columnstore/devregression/r/mcs7077_regression_bug3414.result @@ -1,7 +1,5 @@ USE tpch1; drop table if exists qa_cast; -Warnings: -Note 1051 Unknown table 'tpch1.qa_cast' create table qa_cast ( s1 varchar(20), qaint1 int, qadouble double) engine=columnstore; insert into qa_cast values ('123456789',123456789, 1234); insert into qa_cast values ('123.45',123456789, 123.45); diff --git a/mysql-test/columnstore/devregression/r/mcs7078_regression_bug3436.result b/mysql-test/columnstore/devregression/r/mcs7078_regression_bug3436.result index 4e34f91fd..f5597e97c 100644 --- a/mysql-test/columnstore/devregression/r/mcs7078_regression_bug3436.result +++ b/mysql-test/columnstore/devregression/r/mcs7078_regression_bug3436.result @@ -1,10 +1,6 @@ USE tpch1; drop table if exists bug3436a; -Warnings: -Note 1051 Unknown table 'tpch1.bug3436a' drop table if exists bug3436b; -Warnings: -Note 1051 Unknown table 'tpch1.bug3436b' create table bug3436a (i int, j int, c1 tinyint, c2 decimal(2,1), c3 decimal(4,0), c4 decimal(4,2), c5 float, c6 double) engine=columnstore; insert into bug3436a values (1, 1, 1, 1.1, 9991, 99.1, 1.1, 1.1), (1, 1, 2, 2.2, 9992, 99.2, 2.2, 2.2), (2, 2, 1, 1.1, 9993, 99.3, 1.1, 1.1), (2, 2, 2, 2.2, 9994, 99.4, 2.2, 2.2), (1, 1, 127, 9.1, 9995, 99.5, 127.1, 127.1), (1, 2, 100, 9.2, 9996, 99.6, 100.2, 100.2); create table bug3436b (k int) engine=columnstore; diff --git a/mysql-test/columnstore/devregression/r/mcs7079_regression_bug3442.result b/mysql-test/columnstore/devregression/r/mcs7079_regression_bug3442.result index 5d4abd411..7dfc08aac 100644 --- a/mysql-test/columnstore/devregression/r/mcs7079_regression_bug3442.result +++ b/mysql-test/columnstore/devregression/r/mcs7079_regression_bug3442.result @@ -1,7 +1,5 @@ USE tpch1; drop table if exists optest; -Warnings: -Note 1051 Unknown table 'tpch1.optest' create table optest (id int, c1 date, c2 decimal(4,2), c3 date) engine=columnstore; insert into optest values (0, '2011-01-27', null, '1999-08-25'), (1, null, null, null), (2, '2001-01-05', 2.34, null), (3, null, null, '2001-05-03'); select * from optest where (year(c1) = 2011 or c2 = 2.34) or month(c3) = 1; @@ -70,8 +68,6 @@ id c1 c2 c3 0 2011-01-27 NULL 1999-08-25 3 NULL NULL 2001-05-03 drop table if exists bug3442b; -Warnings: -Note 1051 Unknown table 'tpch1.bug3442b' create table bug3442b ( idx int, i1 int, diff --git a/mysql-test/columnstore/devregression/r/mcs7087_regression_bug3488.result b/mysql-test/columnstore/devregression/r/mcs7087_regression_bug3488.result index a7facb37d..dbf2688b2 100644 --- a/mysql-test/columnstore/devregression/r/mcs7087_regression_bug3488.result +++ b/mysql-test/columnstore/devregression/r/mcs7087_regression_bug3488.result @@ -1,7 +1,5 @@ USE tpch1; drop table if exists bug3488; -Warnings: -Note 1051 Unknown table 'tpch1.bug3488' create table bug3488 (c1 bigint, c2 decimal(18,2), c3 float, c4 double, c5 char(120), c6 varchar(120)) engine=columnstore; insert into bug3488 values (1, 1.1, 1.1, 1.1, '1.1', '1.1'), diff --git a/mysql-test/columnstore/devregression/r/mcs7089_regression_bug3496.result b/mysql-test/columnstore/devregression/r/mcs7089_regression_bug3496.result index 00d2f3724..157bee6bc 100644 --- a/mysql-test/columnstore/devregression/r/mcs7089_regression_bug3496.result +++ b/mysql-test/columnstore/devregression/r/mcs7089_regression_bug3496.result @@ -1,7 +1,5 @@ USE tpch1; drop table if exists bug3496; -Warnings: -Note 1051 Unknown table 'tpch1.bug3496' create table `bug3496` (`c1` int(11) default null,`c2` char(6) default null, `c3` char(11) default null) engine=columnstore; insert into bug3496 values (1, 'abc', 'abc'), diff --git a/mysql-test/columnstore/devregression/r/mcs7090_regression_bug3497.result b/mysql-test/columnstore/devregression/r/mcs7090_regression_bug3497.result index 66a85924f..8d4306655 100644 --- a/mysql-test/columnstore/devregression/r/mcs7090_regression_bug3497.result +++ b/mysql-test/columnstore/devregression/r/mcs7090_regression_bug3497.result @@ -1,10 +1,6 @@ USE tpch1; drop table if exists bug3497a; -Warnings: -Note 1051 Unknown table 'tpch1.bug3497a' drop table if exists bug3497b; -Warnings: -Note 1051 Unknown table 'tpch1.bug3497b' CREATE TABLE bug3497a (col1 int, col2 varchar(10)) engine=columnstore; INSERT INTO bug3497a VALUES(1,'trudy'); INSERT INTO bug3497a VALUES(2,'peter'); diff --git a/mysql-test/columnstore/devregression/r/mcs7097_regression_bug3524.result b/mysql-test/columnstore/devregression/r/mcs7097_regression_bug3524.result index cc21c4755..a689879c0 100644 --- a/mysql-test/columnstore/devregression/r/mcs7097_regression_bug3524.result +++ b/mysql-test/columnstore/devregression/r/mcs7097_regression_bug3524.result @@ -1,10 +1,6 @@ USE tpch1; drop table if exists a1; -Warnings: -Note 1051 Unknown table 'tpch1.a1' drop table if exists a2; -Warnings: -Note 1051 Unknown table 'tpch1.a2' create table a1 (c1 int, c2 int)engine=columnstore; create table a2 (c1 int, c2 int)engine=columnstore; insert into a1 values (1, 1),(2,2),(3,null),(null,3),(null,null); diff --git a/mysql-test/columnstore/devregression/r/mcs7098_regression_bug3532.result b/mysql-test/columnstore/devregression/r/mcs7098_regression_bug3532.result index 9b24bc882..71d23209c 100644 --- a/mysql-test/columnstore/devregression/r/mcs7098_regression_bug3532.result +++ b/mysql-test/columnstore/devregression/r/mcs7098_regression_bug3532.result @@ -1,7 +1,5 @@ USE tpch1; drop table if exists bug3532; -Warnings: -Note 1051 Unknown table 'tpch1.bug3532' create table `bug3532` (`c1` char(1) default null, `c2` int(11) default null) engine=columnstore; insert into bug3532 values (1,1), (0,0), (1,12), (1,-1), (null, null); select round(c1,c1) from bug3532 where c1 = 1; diff --git a/mysql-test/columnstore/devregression/r/mcs7100_regression_bug3563.result b/mysql-test/columnstore/devregression/r/mcs7100_regression_bug3563.result index cf546dc60..410a8e7b0 100644 --- a/mysql-test/columnstore/devregression/r/mcs7100_regression_bug3563.result +++ b/mysql-test/columnstore/devregression/r/mcs7100_regression_bug3563.result @@ -1,13 +1,7 @@ USE tpch1; drop table if exists qatabledecimal2byte; -Warnings: -Note 1051 Unknown table 'tpch1.qatabledecimal2byte' drop table if exists qatabledecimal4byte; -Warnings: -Note 1051 Unknown table 'tpch1.qatabledecimal4byte' drop table if exists qatabletinyint; -Warnings: -Note 1051 Unknown table 'tpch1.qatabletinyint' create table qatabledecimal2byte (col1 decimal(1), col2 decimal(4), col3 decimal(4,2)) engine=columnstore; create table qatabledecimal4byte (col1 decimal(5), col2 decimal(9), col3 decimal(9,2)) engine=columnstore; create table qatabletinyint (col numeric(2,0)) engine=columnstore; diff --git a/mysql-test/columnstore/devregression/r/mcs7101_regression_bug3565.result b/mysql-test/columnstore/devregression/r/mcs7101_regression_bug3565.result index 984eec017..1d57d1085 100644 --- a/mysql-test/columnstore/devregression/r/mcs7101_regression_bug3565.result +++ b/mysql-test/columnstore/devregression/r/mcs7101_regression_bug3565.result @@ -1,7 +1,5 @@ USE tpch1; drop table if exists bug3565; -Warnings: -Note 1051 Unknown table 'tpch1.bug3565' create table bug3565(c1 tinyint)engine=columnstore; insert into bug3565 (select 0 from orders limit 270000); alter table bug3565 add column c2 bigint; diff --git a/mysql-test/columnstore/devregression/r/mcs7103_regression_bug3582.result b/mysql-test/columnstore/devregression/r/mcs7103_regression_bug3582.result index 32c002883..8d97d0336 100644 --- a/mysql-test/columnstore/devregression/r/mcs7103_regression_bug3582.result +++ b/mysql-test/columnstore/devregression/r/mcs7103_regression_bug3582.result @@ -1,7 +1,5 @@ USE tpch1; drop table if exists bug3582; -Warnings: -Note 1051 Unknown table 'tpch1.bug3582' create table bug3582 (c1 decimal(4,2), c2 char(4), c3 varchar(15)) engine=columnstore; insert into bug3582 values (4.00,'a','b'); select * from bug3582; diff --git a/mysql-test/columnstore/devregression/r/mcs7106_regression_bug3669.result b/mysql-test/columnstore/devregression/r/mcs7106_regression_bug3669.result index de22e64f7..697bd2ecf 100644 --- a/mysql-test/columnstore/devregression/r/mcs7106_regression_bug3669.result +++ b/mysql-test/columnstore/devregression/r/mcs7106_regression_bug3669.result @@ -1,7 +1,5 @@ USE tpch1; drop table if exists stringtest; -Warnings: -Note 1051 Unknown table 'tpch1.stringtest' create table stringtest (c1 char(10), c2 varchar(10), c3 varchar(6))engine=columnstore; insert into stringtest values ('abc','cde','abc'), ('cde','abc','cde'); select * from stringtest where c1='abc' or c2='abc'; diff --git a/mysql-test/columnstore/devregression/r/mcs7107_regression_bug3670_negative.result b/mysql-test/columnstore/devregression/r/mcs7107_regression_bug3670_negative.result index ff01ec73f..9761e8c93 100644 --- a/mysql-test/columnstore/devregression/r/mcs7107_regression_bug3670_negative.result +++ b/mysql-test/columnstore/devregression/r/mcs7107_regression_bug3670_negative.result @@ -1,7 +1,5 @@ USE tpch1; drop table if exists month; -Warnings: -Note 1051 Unknown table 'tpch1.month' create table month(id int, month varchar(20), season varchar(6))engine=columnstore; insert into month values (1, 'Jan', 'Winter'); SELECT *, diff --git a/mysql-test/columnstore/devregression/r/mcs7109_regression_bug3680.result b/mysql-test/columnstore/devregression/r/mcs7109_regression_bug3680.result index 98192f512..c7fc5484d 100644 --- a/mysql-test/columnstore/devregression/r/mcs7109_regression_bug3680.result +++ b/mysql-test/columnstore/devregression/r/mcs7109_regression_bug3680.result @@ -1,19 +1,9 @@ USE tpch1; drop table if exists pts_agg_url_report; -Warnings: -Note 1051 Unknown table 'tpch1.pts_agg_url_report' drop table if exists pts_dim_publisher; -Warnings: -Note 1051 Unknown table 'tpch1.pts_dim_publisher' drop table if exists pts_dim_subsite; -Warnings: -Note 1051 Unknown table 'tpch1.pts_dim_subsite' drop table if exists pts_meta_ad; -Warnings: -Note 1051 Unknown table 'tpch1.pts_meta_ad' drop table if exists pts_meta_campaign; -Warnings: -Note 1051 Unknown table 'tpch1.pts_meta_campaign' CREATE TABLE `pts_agg_url_report` ( `agg_date` date DEFAULT NULL, `client_id` varchar(32) DEFAULT NULL, @@ -56,7 +46,7 @@ CREATE TABLE `pts_meta_ad` ( `dimension` varchar(7) DEFAULT NULL, `dimensionName` varchar(250) DEFAULT NULL ) engine=columnstore; -cREATE TABLE `pts_meta_campaign` ( +CREATE TABLE `pts_meta_campaign` ( `clientId` varchar(32) DEFAULT NULL, `externalClientId` int(11) DEFAULT NULL, `id` varchar(32) DEFAULT NULL, @@ -91,14 +81,8 @@ drop table pts_dim_subsite; drop table pts_meta_ad; drop table pts_meta_campaign; drop table if exists marketing_conversions; -Warnings: -Note 1051 Unknown table 'tpch1.marketing_conversions' drop table if exists marketing_events; -Warnings: -Note 1051 Unknown table 'tpch1.marketing_events' drop table if exists marketing_leads; -Warnings: -Note 1051 Unknown table 'tpch1.marketing_leads' CREATE TABLE `marketing_conversions` ( `pkMarketingConversionID` int(10) DEFAULT NULL, `CreatedOn` datetime DEFAULT NULL, diff --git a/mysql-test/columnstore/devregression/r/mcs7111_regression_bug3706.result b/mysql-test/columnstore/devregression/r/mcs7111_regression_bug3706.result index 4c87ec323..c9a6c91b4 100644 --- a/mysql-test/columnstore/devregression/r/mcs7111_regression_bug3706.result +++ b/mysql-test/columnstore/devregression/r/mcs7111_regression_bug3706.result @@ -1,7 +1,5 @@ USE tpch1; drop table if exists t1; -Warnings: -Note 1051 Unknown table 'tpch1.t1' create table t1(f1 varchar(5)) engine=columnstore; insert into t1(f1) select if(max(f1) is null, '2000',max(f1)+1) from t1; select * from t1 order by 1; diff --git a/mysql-test/columnstore/devregression/r/mcs7112_regression_bug3708.result b/mysql-test/columnstore/devregression/r/mcs7112_regression_bug3708.result index 74b967a8b..a0ab37cb2 100644 --- a/mysql-test/columnstore/devregression/r/mcs7112_regression_bug3708.result +++ b/mysql-test/columnstore/devregression/r/mcs7112_regression_bug3708.result @@ -1,7 +1,5 @@ USE tpch1; drop table if exists looooooooooooooooooooooooooooooooooooooooong_tb_name; -Warnings: -Note 1051 Unknown table 'tpch1.looooooooooooooooooooooooooooooooooooooooong_tb_name' create table looooooooooooooooooooooooooooooooooooooooong_tb_name (looooooooooooooooooooooooooooooooooooooooong_col_name int)engine=columnstore; insert into looooooooooooooooooooooooooooooooooooooooong_tb_name values (10); select looooooooooooooooooooooooooooooooooooooooong_col_name from looooooooooooooooooooooooooooooooooooooooong_tb_name diff --git a/mysql-test/columnstore/devregression/r/mcs7113_regression_bug3719.result b/mysql-test/columnstore/devregression/r/mcs7113_regression_bug3719.result index 320040436..b1b6950ef 100644 --- a/mysql-test/columnstore/devregression/r/mcs7113_regression_bug3719.result +++ b/mysql-test/columnstore/devregression/r/mcs7113_regression_bug3719.result @@ -2,11 +2,7 @@ USE tpch1; create database if not exists geo; use geo; drop table if exists `geo_tag_values`; -Warnings: -Note 1051 Unknown table 'geo.geo_tag_values' drop table if exists `geo_tags`; -Warnings: -Note 1051 Unknown table 'geo.geo_tags' CREATE TABLE `geo_tag_values` ( `id` int(11) DEFAULT NULL, `value` varchar(255) DEFAULT NULL, @@ -23,29 +19,13 @@ CREATE TABLE `geo_tags` ( create database if not exists pbkt; use pbkt; drop table if exists `areas`; -Warnings: -Note 1051 Unknown table 'pbkt.areas' drop table if exists `bigsumplus`; -Warnings: -Note 1051 Unknown table 'pbkt.bigsumplus' drop table if exists `dim_date`; -Warnings: -Note 1051 Unknown table 'pbkt.dim_date' drop table if exists `sizes`; -Warnings: -Note 1051 Unknown table 'pbkt.sizes' drop table if exists `tag_values`; -Warnings: -Note 1051 Unknown table 'pbkt.tag_values' drop view if exists `tag_values_geo_country`; -Warnings: -Note 4092 Unknown VIEW: 'pbkt.tag_values_geo_country' drop view if exists `tag_values_geo_region`; -Warnings: -Note 4092 Unknown VIEW: 'pbkt.tag_values_geo_region' drop view if exists `tag_values_ptype`; -Warnings: -Note 4092 Unknown VIEW: 'pbkt.tag_values_ptype' CREATE TABLE `areas` ( `id` int(11) DEFAULT NULL, `name` varchar(255) DEFAULT NULL, diff --git a/mysql-test/columnstore/devregression/r/mcs7121_regression_bug3783.result b/mysql-test/columnstore/devregression/r/mcs7121_regression_bug3783.result index 0564a476f..be05a02a7 100644 --- a/mysql-test/columnstore/devregression/r/mcs7121_regression_bug3783.result +++ b/mysql-test/columnstore/devregression/r/mcs7121_regression_bug3783.result @@ -1,7 +1,5 @@ USE tpch1; drop table if exists bug3783; -Warnings: -Note 1051 Unknown table 'tpch1.bug3783' set max_length_for_sort_data = 8192; create table bug3783 (id int, name varchar(1000))engine=columnstore; insert into bug3783 values (1,'yionfsdayfeiwajg'),(2,'gretsuyhejkstj jkete'); diff --git a/mysql-test/columnstore/devregression/r/mcs7123_regression_bug3792_negative.result b/mysql-test/columnstore/devregression/r/mcs7123_regression_bug3792_negative.result index 971745b38..c861a38fb 100644 --- a/mysql-test/columnstore/devregression/r/mcs7123_regression_bug3792_negative.result +++ b/mysql-test/columnstore/devregression/r/mcs7123_regression_bug3792_negative.result @@ -1,7 +1,5 @@ USE tpch1; drop table if exists bug3792; -Warnings: -Note 1051 Unknown table 'tpch1.bug3792' create table bug3792 (c1 int, c2 datetime) engine=columnstore; insert into bug3792 values (1, '9999-12-31 23:59:59'); insert into bug3792 values (2, '1000-01-01 00:00:00'); diff --git a/mysql-test/columnstore/devregression/r/mcs7124_regression_bug3798.result b/mysql-test/columnstore/devregression/r/mcs7124_regression_bug3798.result index 3a0032491..8e053dbd2 100644 --- a/mysql-test/columnstore/devregression/r/mcs7124_regression_bug3798.result +++ b/mysql-test/columnstore/devregression/r/mcs7124_regression_bug3798.result @@ -13,8 +13,6 @@ cidx CDOUBLE CAST(CDOUBLE AS DECIMAL(9)) 10 1.797693231e108 999999999 11 0 0 drop table if exists bug3798; -Warnings: -Note 1051 Unknown table 'tpch1.bug3798' create table bug3798 (c1 float) engine=columnstore; insert into bug3798 values (1234567), (1.2345678); select c1, cast(c1 as decimal(9,2)), cast(c1 as decimal(14,12)) from bug3798; diff --git a/mysql-test/columnstore/devregression/r/mcs7126_regression_bug3853.result b/mysql-test/columnstore/devregression/r/mcs7126_regression_bug3853.result index d8ea524d6..4ef5f1c2a 100644 --- a/mysql-test/columnstore/devregression/r/mcs7126_regression_bug3853.result +++ b/mysql-test/columnstore/devregression/r/mcs7126_regression_bug3853.result @@ -1,10 +1,6 @@ USE tpch1; drop table if exists dw_entradas_fact; -Warnings: -Note 1051 Unknown table 'tpch1.dw_entradas_fact' drop table if exists dw_entradas_fact_1; -Warnings: -Note 1051 Unknown table 'tpch1.dw_entradas_fact_1' create table dw_entradas_fact (fecha date) engine=columnstore; create table dw_entradas_fact_1 (fecha date) engine=columnstore; insert into dw_entradas_fact values ('2010-01-01'), ('2010-02-02'), ('2010-02-27'), ('2010-03-01'); @@ -92,8 +88,6 @@ FROM DW_ENTRADAS_FACT_1 WHERE FECHA BETWEEN '2010-02-01' and '2010-02-28')) AS TY; NORMAL OFERTA 1 1 -drop table if exists dw_entradas_fact; -drop table if exists dw_entradas_fact_1; select * from region where 2=2 union select n_regionkey, n_nationkey, n_name from nation where 0=1; r_regionkey r_name r_comment 0 AFRICA lar deposits. blithely final packages cajole. regular waters are final requests. regular accounts are according to @@ -101,3 +95,5 @@ r_regionkey r_name r_comment 2 ASIA ges. thinly even pinto beans ca 3 EUROPE ly final courts cajole furiously final excuse 4 MIDDLE EAST uickly special accounts cajole carefully blithely close requests. carefully final asymptotes haggle furiousl +drop table if exists dw_entradas_fact; +drop table if exists dw_entradas_fact_1; diff --git a/mysql-test/columnstore/devregression/r/mcs7129_regression_bug3932.result b/mysql-test/columnstore/devregression/r/mcs7129_regression_bug3932.result index 18d63e001..e6acefcc0 100644 --- a/mysql-test/columnstore/devregression/r/mcs7129_regression_bug3932.result +++ b/mysql-test/columnstore/devregression/r/mcs7129_regression_bug3932.result @@ -1,16 +1,8 @@ USE tpch1; drop table if exists qa_nation; -Warnings: -Note 1051 Unknown table 'tpch1.qa_nation' drop table if exists qa_customer; -Warnings: -Note 1051 Unknown table 'tpch1.qa_customer' drop table if exists qa_region; -Warnings: -Note 1051 Unknown table 'tpch1.qa_region' drop table if exists qa_orders; -Warnings: -Note 1051 Unknown table 'tpch1.qa_orders' create table qa_nation (n_id int, n_name char(20), regionid int) engine=columnstore; create table qa_customer (c_id int, c_custname char(20), nationid int) engine=columnstore; create table qa_region (r_id int, r_name char(20)) engine=columnstore; diff --git a/mysql-test/columnstore/devregression/r/mcs7131_regression_bug3948.result b/mysql-test/columnstore/devregression/r/mcs7131_regression_bug3948.result index a96cd4d3c..935801639 100644 --- a/mysql-test/columnstore/devregression/r/mcs7131_regression_bug3948.result +++ b/mysql-test/columnstore/devregression/r/mcs7131_regression_bug3948.result @@ -1,16 +1,8 @@ USE tpch1; drop table if exists fct_summary_transactional_snapshot; -Warnings: -Note 1051 Unknown table 'tpch1.fct_summary_transactional_snapshot' drop table if exists dim_c_bridge_duration; -Warnings: -Note 1051 Unknown table 'tpch1.dim_c_bridge_duration' drop table if exists fct_macro_payment_details; -Warnings: -Note 1051 Unknown table 'tpch1.fct_macro_payment_details' drop table if exists dim_c_calendar; -Warnings: -Note 1051 Unknown table 'tpch1.dim_c_calendar' CREATE TABLE `fct_macro_payment_details` ( `TRANSACTION_DW_ID` bigint(20) DEFAULT NULL, `TRANSACTION_ID` varchar(255) DEFAULT NULL, diff --git a/mysql-test/columnstore/devregression/r/mcs7132_regression_bug3952.result b/mysql-test/columnstore/devregression/r/mcs7132_regression_bug3952.result index 55ebcbcf0..cd2ea9ec8 100644 --- a/mysql-test/columnstore/devregression/r/mcs7132_regression_bug3952.result +++ b/mysql-test/columnstore/devregression/r/mcs7132_regression_bug3952.result @@ -1,7 +1,5 @@ USE tpch1; drop table if exists bug3952; -Warnings: -Note 1051 Unknown table 'tpch1.bug3952' create table bug3952 (id int, name varchar(25)); insert into bug3952 values (1,'aaa'),(2,'bbb'); select * from bug3952 n1, (select * from bug3952)n2 where n1.id=n2.id; diff --git a/mysql-test/columnstore/devregression/r/mcs7135_regression_bug3998.result b/mysql-test/columnstore/devregression/r/mcs7135_regression_bug3998.result index 9eb4141e1..77825b0aa 100644 --- a/mysql-test/columnstore/devregression/r/mcs7135_regression_bug3998.result +++ b/mysql-test/columnstore/devregression/r/mcs7135_regression_bug3998.result @@ -1,16 +1,8 @@ USE tpch1; drop table if exists bug3998a; -Warnings: -Note 1051 Unknown table 'tpch1.bug3998a' drop table if exists bug3998b; -Warnings: -Note 1051 Unknown table 'tpch1.bug3998b' drop table if exists bug3998c; -Warnings: -Note 1051 Unknown table 'tpch1.bug3998c' drop table if exists bug3998d; -Warnings: -Note 1051 Unknown table 'tpch1.bug3998d' create table bug3998a (c1 int, c2 int) engine=columnstore; insert into bug3998a values (0,0), (1,1), (2,1), (3, 1), (null,1), (null, null); select * from bug3998a; diff --git a/mysql-test/columnstore/devregression/r/mcs7136_regression_bug4027.result b/mysql-test/columnstore/devregression/r/mcs7136_regression_bug4027.result index bc30456dd..71945e44b 100644 --- a/mysql-test/columnstore/devregression/r/mcs7136_regression_bug4027.result +++ b/mysql-test/columnstore/devregression/r/mcs7136_regression_bug4027.result @@ -1,10 +1,6 @@ USE tpch1; drop table if exists product; -Warnings: -Note 1051 Unknown table 'tpch1.product' drop table if exists product_tag; -Warnings: -Note 1051 Unknown table 'tpch1.product_tag' create table product_tag (product_id bigint)engine=columnstore; CREATE TABLE `product` ( `product_id` bigint(20) DEFAULT NULL, diff --git a/mysql-test/columnstore/devregression/r/mcs7143_regression_bug4346.result b/mysql-test/columnstore/devregression/r/mcs7143_regression_bug4346.result index 6c2b5ec71..40710d3a4 100644 --- a/mysql-test/columnstore/devregression/r/mcs7143_regression_bug4346.result +++ b/mysql-test/columnstore/devregression/r/mcs7143_regression_bug4346.result @@ -1,7 +1,5 @@ USE tpch1; drop table if exists dim_day; -Warnings: -Note 1051 Unknown table 'tpch1.dim_day' CREATE TABLE `dim_day` ( `dayId` SMALLINT(5) DEFAULT NULL, `displayDate` DATE DEFAULT NULL diff --git a/mysql-test/columnstore/devregression/r/mcs7144_regression_bug4359.result b/mysql-test/columnstore/devregression/r/mcs7144_regression_bug4359.result index ce38e83cb..ea529de6c 100644 --- a/mysql-test/columnstore/devregression/r/mcs7144_regression_bug4359.result +++ b/mysql-test/columnstore/devregression/r/mcs7144_regression_bug4359.result @@ -1,7 +1,5 @@ USE tpch1; drop table if exists bug4359; -Warnings: -Note 1051 Unknown table 'tpch1.bug4359' CREATE TABLE bug4359 ( sdate datetime DEFAULT NULL, edate datetime DEFAULT NULL diff --git a/mysql-test/columnstore/devregression/r/mcs7146_regression_bug4386.result b/mysql-test/columnstore/devregression/r/mcs7146_regression_bug4386.result index f46b147eb..63c353278 100644 --- a/mysql-test/columnstore/devregression/r/mcs7146_regression_bug4386.result +++ b/mysql-test/columnstore/devregression/r/mcs7146_regression_bug4386.result @@ -1,7 +1,5 @@ USE tpch1; drop table if exists dim_date; -Warnings: -Note 1051 Unknown table 'tpch1.dim_date' create table dim_date ( companycode integer, FinancialQuarterID integer, FinancialQuarter integer, FinancialYear integer ) engine=columnstore; insert into dim_date values (1,1,2,1); diff --git a/mysql-test/columnstore/devregression/r/mcs7149_regression_bug4394.result b/mysql-test/columnstore/devregression/r/mcs7149_regression_bug4394.result index 8f71adba0..d5f210421 100644 --- a/mysql-test/columnstore/devregression/r/mcs7149_regression_bug4394.result +++ b/mysql-test/columnstore/devregression/r/mcs7149_regression_bug4394.result @@ -1,7 +1,5 @@ USE tpch1; drop table if exists bug4394; -Warnings: -Note 1051 Unknown table 'tpch1.bug4394' create table bug4394(c1 datetime) engine=columnstore; insert into bug4394 values('1000-01-01 00:00:00'); select * from bug4394; diff --git a/mysql-test/columnstore/devregression/r/mcs7150_regression_bug4422.result b/mysql-test/columnstore/devregression/r/mcs7150_regression_bug4422.result index f1c8e814c..0e1d07933 100644 --- a/mysql-test/columnstore/devregression/r/mcs7150_regression_bug4422.result +++ b/mysql-test/columnstore/devregression/r/mcs7150_regression_bug4422.result @@ -1,19 +1,9 @@ USE tpch1; drop table if exists bigsumplus; -Warnings: -Note 1051 Unknown table 'tpch1.bigsumplus' drop table if exists areas; -Warnings: -Note 1051 Unknown table 'tpch1.areas' drop table if exists geo_tag_values; -Warnings: -Note 1051 Unknown table 'tpch1.geo_tag_values' drop table if exists geo_tags; -Warnings: -Note 1051 Unknown table 'tpch1.geo_tags' drop view if exists tag_values_geo_country; -Warnings: -Note 4092 Unknown VIEW: 'tpch1.tag_values_geo_country' create table if not exists `bigsumplus` ( `served` bigint(20) DEFAULT NULL, diff --git a/mysql-test/columnstore/devregression/r/mcs7151_regression_bug4431.result b/mysql-test/columnstore/devregression/r/mcs7151_regression_bug4431.result index 8c5668146..fb16a7bdb 100644 --- a/mysql-test/columnstore/devregression/r/mcs7151_regression_bug4431.result +++ b/mysql-test/columnstore/devregression/r/mcs7151_regression_bug4431.result @@ -1,13 +1,7 @@ USE tpch1; drop table if exists bug4431_1; -Warnings: -Note 1051 Unknown table 'tpch1.bug4431_1' drop table if exists bug4431_2; -Warnings: -Note 1051 Unknown table 'tpch1.bug4431_2' drop table if exists bug4431_3; -Warnings: -Note 1051 Unknown table 'tpch1.bug4431_3' create table bug4431_1 (date int, col2 date) engine=columnstore; create table bug4431_2 (`date` int, col2 date) engine=columnstore; create table bug4431_3 (col2 date) engine=columnstore; diff --git a/mysql-test/columnstore/devregression/r/mcs7158_regression_bug4767.result b/mysql-test/columnstore/devregression/r/mcs7158_regression_bug4767.result index 57819a158..874d72484 100644 --- a/mysql-test/columnstore/devregression/r/mcs7158_regression_bug4767.result +++ b/mysql-test/columnstore/devregression/r/mcs7158_regression_bug4767.result @@ -1,10 +1,6 @@ USE tpch1; drop table if exists cat; -Warnings: -Note 1051 Unknown table 'tpch1.cat' drop table if exists dog; -Warnings: -Note 1051 Unknown table 'tpch1.dog' create table cat(id int, f float, d double)engine=columnstore; create table dog(id int, f float, d double)engine=columnstore; insert into cat values diff --git a/mysql-test/columnstore/devregression/r/mcs7166_regression_bug5099.result b/mysql-test/columnstore/devregression/r/mcs7166_regression_bug5099.result index 43125c92c..1317f593f 100644 --- a/mysql-test/columnstore/devregression/r/mcs7166_regression_bug5099.result +++ b/mysql-test/columnstore/devregression/r/mcs7166_regression_bug5099.result @@ -1,7 +1,5 @@ USE tpch1; DROP TABLE if exists bug5099; -Warnings: -Note 1051 Unknown table 'tpch1.bug5099' CREATE TABLE `bug5099` (`col1` datetime DEFAULT NULL, `col2` datetime DEFAULT NULL ) ENGINE=Columnstore; insert into bug5099 (col1, col2) values ('2012-09-24 11:00:01', '2012-09-24 11:00:00'); insert into bug5099 (col1, col2) values ('2012-09-24 11:01:00', '2012-09-24 11:02:00'); diff --git a/mysql-test/columnstore/devregression/r/mcs7168_regression_bug5173.result b/mysql-test/columnstore/devregression/r/mcs7168_regression_bug5173.result index 745589427..f5e9229a5 100644 --- a/mysql-test/columnstore/devregression/r/mcs7168_regression_bug5173.result +++ b/mysql-test/columnstore/devregression/r/mcs7168_regression_bug5173.result @@ -1,7 +1,5 @@ USE tpch1; drop table if exists qadefaulttest; -Warnings: -Note 1051 Unknown table 'tpch1.qadefaulttest' create table qadefaulttest (cidx int) engine=columnstore; ALTER TABLE qadefaulttest ADD column MYDOUBLE2 DOUBLE not null DEFAULT -88.88; insert into qadefaulttest values (1, -88.88); diff --git a/mysql-test/columnstore/devregression/r/mcs7171_regression_bug5229.result b/mysql-test/columnstore/devregression/r/mcs7171_regression_bug5229.result index 13a45b180..ca4ad0b52 100644 --- a/mysql-test/columnstore/devregression/r/mcs7171_regression_bug5229.result +++ b/mysql-test/columnstore/devregression/r/mcs7171_regression_bug5229.result @@ -1,7 +1,5 @@ USE tpch1; drop table if exists uriage_inf; -Warnings: -Note 1051 Unknown table 'tpch1.uriage_inf' create table uriage_inf(eigyo_shimei varchar(20),uriage numeric) engine=columnstore default charset=utf8; insert into uriage_inf values('SMITH',1000); insert into uriage_inf values('ALLEN',2000); @@ -9,8 +7,6 @@ insert into uriage_inf values('JONES',3000); insert into uriage_inf values('SMITH',4000); insert into uriage_inf values('BLAKE',5000); drop table if exists uriage_my; -Warnings: -Note 1051 Unknown table 'tpch1.uriage_my' create table uriage_my (eigyo_shimei varchar(20),uriage numeric) engine=myisam default charset=utf8; insert into uriage_my values('SMITH',1000); insert into uriage_my values('ALLEN',2000); diff --git a/mysql-test/columnstore/devregression/r/mcs7172_regression_bug5230.result b/mysql-test/columnstore/devregression/r/mcs7172_regression_bug5230.result index ce4db03f0..e46d9c676 100644 --- a/mysql-test/columnstore/devregression/r/mcs7172_regression_bug5230.result +++ b/mysql-test/columnstore/devregression/r/mcs7172_regression_bug5230.result @@ -1,7 +1,5 @@ USE tpch1; drop table if exists region1; -Warnings: -Note 1051 Unknown table 'tpch1.region1' create table region1 ( r_regionkey int, diff --git a/mysql-test/columnstore/devregression/r/mcs7174_regression_bug5286.result b/mysql-test/columnstore/devregression/r/mcs7174_regression_bug5286.result index cf4bbedd0..83c9386ec 100644 --- a/mysql-test/columnstore/devregression/r/mcs7174_regression_bug5286.result +++ b/mysql-test/columnstore/devregression/r/mcs7174_regression_bug5286.result @@ -1,10 +1,6 @@ USE tpch1; drop table if exists test; -Warnings: -Note 1051 Unknown table 'tpch1.test' drop view if exists test_v; -Warnings: -Note 4092 Unknown VIEW: 'tpch1.test_v' create table test (test1 numeric,test2 varchar(20)) engine=columnstore; create view test_v as select * from test; insert into test values (1,'data1'); diff --git a/mysql-test/columnstore/devregression/r/mcs7175_regression_bug5289.result b/mysql-test/columnstore/devregression/r/mcs7175_regression_bug5289.result index bde4f68db..0de706aed 100644 --- a/mysql-test/columnstore/devregression/r/mcs7175_regression_bug5289.result +++ b/mysql-test/columnstore/devregression/r/mcs7175_regression_bug5289.result @@ -1,13 +1,7 @@ USE tpch1; drop table if exists bug5289a; -Warnings: -Note 1051 Unknown table 'tpch1.bug5289a' drop table if exists bug5289b; -Warnings: -Note 1051 Unknown table 'tpch1.bug5289b' drop view if exists bug5289b_v; -Warnings: -Note 4092 Unknown VIEW: 'tpch1.bug5289b_v' create table bug5289a( a decimal(10,0), b varchar(30)) @@ -32,5 +26,3 @@ q3 2 drop table if exists bug5289a; drop table if exists bug5289b; drop view if exists bug5289b_v; -Warnings: -Note 4092 Unknown VIEW: 'tpch1.bug5289b_v' diff --git a/mysql-test/columnstore/devregression/r/mcs7177_regression_bug5319.result b/mysql-test/columnstore/devregression/r/mcs7177_regression_bug5319.result index 88dcde468..ee9a8c52e 100644 --- a/mysql-test/columnstore/devregression/r/mcs7177_regression_bug5319.result +++ b/mysql-test/columnstore/devregression/r/mcs7177_regression_bug5319.result @@ -1,7 +1,5 @@ USE tpch1; DROP TABLE IF EXISTS bug5319_a; -Warnings: -Note 1051 Unknown table 'tpch1.bug5319_a' CREATE TABLE `bug5319_a` ( `col1` int(11) DEFAULT NULL, `col2` int(11) DEFAULT NULL @@ -9,8 +7,6 @@ CREATE TABLE `bug5319_a` ( insert into bug5319_a values (1,2); insert into bug5319_a values (1,2); DROP TABLE IF EXISTS bug5319_b; -Warnings: -Note 1051 Unknown table 'tpch1.bug5319_b' CREATE TABLE `bug5319_b` ( `col1` int(11) DEFAULT NULL, `col2` int(11) DEFAULT NULL @@ -19,8 +15,6 @@ insert into bug5319_b values (1,2); insert into bug5319_b values (1,3); insert into bug5319_b values (1,4); DROP VIEW IF EXISTS view_bug5319_b; -Warnings: -Note 4092 Unknown VIEW: 'tpch1.view_bug5319_b' create view view_bug5319_b as select bug5319_b.col1 AS col1, bug5319_b.col2 AS col2,sum(bug5319_b.col2) AS kensyu_gk_total from bug5319_b group by bug5319_b.col1,bug5319_b.col2; Select bug5319_a.col1,bv.col2 from bug5319_a left join view_bug5319_b bv on (bug5319_a.col1 = bv.col1) order by 1, 2 ; diff --git a/mysql-test/columnstore/devregression/r/mcs7181_regression_bug5448.result b/mysql-test/columnstore/devregression/r/mcs7181_regression_bug5448.result index a0f07dd0c..c67eb875f 100644 --- a/mysql-test/columnstore/devregression/r/mcs7181_regression_bug5448.result +++ b/mysql-test/columnstore/devregression/r/mcs7181_regression_bug5448.result @@ -1,7 +1,5 @@ USE tpch1; drop table if exists bug5448; -Warnings: -Note 1051 Unknown table 'tpch1.bug5448' create table bug5448 (mst_date datetime) engine=columnstore; insert into bug5448 values ('2013-03-01'); insert into bug5448 values ('2012-03-01'); diff --git a/mysql-test/columnstore/devregression/r/mcs7182_regression_bug5687.result b/mysql-test/columnstore/devregression/r/mcs7182_regression_bug5687.result index cb8619fad..e2afbf938 100644 --- a/mysql-test/columnstore/devregression/r/mcs7182_regression_bug5687.result +++ b/mysql-test/columnstore/devregression/r/mcs7182_regression_bug5687.result @@ -1,7 +1,5 @@ USE tpch1; drop table if exists bug5687; -Warnings: -Note 1051 Unknown table 'tpch1.bug5687' create table bug5687(col1 datetime DEFAULT NULL) engine=columnstore; insert into bug5687 (col1) values ("2012-01-24 11:00:01"); insert into bug5687 (col1) values ("1812-02-24 11:10:01"); diff --git a/mysql-test/columnstore/devregression/r/mcs7183_regression_bug5712.result b/mysql-test/columnstore/devregression/r/mcs7183_regression_bug5712.result index 8954bae35..103bd224e 100644 --- a/mysql-test/columnstore/devregression/r/mcs7183_regression_bug5712.result +++ b/mysql-test/columnstore/devregression/r/mcs7183_regression_bug5712.result @@ -1,7 +1,5 @@ USE tpch1; DROP TABLE IF EXISTS bug5712; -Warnings: -Note 1051 Unknown table 'tpch1.bug5712' CREATE TABLE bug5712 (`time_tk` INT(11) UNSIGNED NOT NULL) ENGINE=Columnstore DEFAULT CHARSET=latin1; INSERT INTO bug5712 VALUES (2013113023), diff --git a/mysql-test/columnstore/devregression/r/mcs7185_regression_bug5764b.result b/mysql-test/columnstore/devregression/r/mcs7185_regression_bug5764b.result index e1f48a756..bcdf5f6cf 100644 --- a/mysql-test/columnstore/devregression/r/mcs7185_regression_bug5764b.result +++ b/mysql-test/columnstore/devregression/r/mcs7185_regression_bug5764b.result @@ -1,16 +1,8 @@ USE tpch1; drop view if exists vwBug; -Warnings: -Note 4092 Unknown VIEW: 'tpch1.vwbug' drop view if exists vwBug2; -Warnings: -Note 4092 Unknown VIEW: 'tpch1.vwbug2' drop view if exists vwBug3; -Warnings: -Note 4092 Unknown VIEW: 'tpch1.vwbug3' drop view if exists vwBug4; -Warnings: -Note 4092 Unknown VIEW: 'tpch1.vwbug4' create view vwBug as select sub1.c1 s1c1, sub1.c2 s1c2, sub2.c1 s2c1, sub2.c2 s2c2, sub3.c1 s3c1, sub3.c2 s3c2 from sub1 diff --git a/mysql-test/columnstore/devregression/r/mcs7186_regression_bug5764.result b/mysql-test/columnstore/devregression/r/mcs7186_regression_bug5764.result index ddfb35f21..6f6e0d4a4 100644 --- a/mysql-test/columnstore/devregression/r/mcs7186_regression_bug5764.result +++ b/mysql-test/columnstore/devregression/r/mcs7186_regression_bug5764.result @@ -1,7 +1,5 @@ USE tpch1; drop table if exists mk_calendar; -Warnings: -Note 1051 Unknown table 'tpch1.mk_calendar' CREATE TABLE if not exists `mk_calendar` ( `nengetsu_yyyymmdd` date DEFAULT NULL, `shukei_dd` varchar(6) DEFAULT NULL, @@ -14,8 +12,6 @@ insert into mk_calendar values ('2009-04-01', 1, 200904), ('2009-04-02', 2, 200904); drop table if exists mk_kishu_gaibu; -Warnings: -Note 1051 Unknown table 'tpch1.mk_kishu_gaibu' CREATE TABLE if not exists `mk_kishu_gaibu` ( `Jyohokei_Denwa_Shurui` varchar(100) DEFAULT NULL, `Shuryoku_Hanbai_Kishu_Key` varchar(100) DEFAULT NULL @@ -29,8 +25,6 @@ insert into mk_kishu_gaibu values ('A1', '508G'), ('GT', 'HD60'); drop table if exists mk_kishubetsu_report2; -Warnings: -Note 1051 Unknown table 'tpch1.mk_kishubetsu_report2' CREATE TABLE if not exists `mk_kishubetsu_report2` ( `KEYNO` int(10) DEFAULT NULL ) ENGINE=Columnstore DEFAULT CHARSET=utf8; @@ -46,8 +40,6 @@ insert into mk_kishubetsu_report2 values (1000009), (6000001); drop table if exists mk_organization; -Warnings: -Note 1051 Unknown table 'tpch1.mk_organization' CREATE TABLE if not exists `mk_organization` ( `Tokatsuten_Code` varchar(30) DEFAULT NULL, `Kyoten_Code` varchar(30) DEFAULT NULL @@ -64,8 +56,6 @@ insert into mk_organization values ('EK21', '017'), ('NESM', '021'); drop table if exists mk_shuryoku_hanbai_kishu; -Warnings: -Note 1051 Unknown table 'tpch1.mk_shuryoku_hanbai_kishu' CREATE TABLE if not exists `mk_shuryoku_hanbai_kishu` ( `catalog_nengetsu` varchar(6) DEFAULT NULL, `kata_shiki` varchar(20) DEFAULT NULL @@ -79,8 +69,6 @@ insert into mk_shuryoku_hanbai_kishu values (200905, 'S002'), (200905, 'BUGS'); drop table if exists ts_kishubetsu_hibetsu_pfmtst; -Warnings: -Note 1051 Unknown table 'tpch1.ts_kishubetsu_hibetsu_pfmtst' CREATE TABLE if not exists `ts_kishubetsu_hibetsu_pfmtst` ( `keijyo_yyyymm` int(6) DEFAULT NULL, `keijyo_dd` varchar(6) DEFAULT '@', @@ -99,8 +87,6 @@ insert into ts_kishubetsu_hibetsu_pfmtst values (200904, 3, 'K554', 'M18', 'GT', 1000004), (200904, 4, 'K554', '021', 'ZZ', 3333333); drop view if exists v_kyotenbetsu_kishubetsu_hibetsu_base; -Warnings: -Note 4092 Unknown VIEW: 'tpch1.v_kyotenbetsu_kishubetsu_hibetsu_base' CREATE VIEW `v_kyotenbetsu_kishubetsu_hibetsu_base` AS ( @@ -128,8 +114,6 @@ AND (`trn`.`kyoten_code` = `mst_org`.`Kyoten_Code`) ) ); drop view if exists v_kyotenbetsu_kishubetsu_hibetsu; -Warnings: -Note 4092 Unknown VIEW: 'tpch1.v_kyotenbetsu_kishubetsu_hibetsu' CREATE VIEW `v_kyotenbetsu_kishubetsu_hibetsu` AS ( diff --git a/mysql-test/columnstore/devregression/r/mcs7187_regression_bug5777.result b/mysql-test/columnstore/devregression/r/mcs7187_regression_bug5777.result index 6f110024b..9119bc567 100644 --- a/mysql-test/columnstore/devregression/r/mcs7187_regression_bug5777.result +++ b/mysql-test/columnstore/devregression/r/mcs7187_regression_bug5777.result @@ -1,7 +1,5 @@ USE tpch1; DROP TABLE IF EXISTS query_class_metrics_float; -Warnings: -Note 1051 Unknown table 'tpch1.query_class_metrics_float' CREATE TABLE `query_class_metrics_float` ( `agent_id` bigint(20) DEFAULT NULL, `start_ts` datetime DEFAULT NULL, diff --git a/mysql-test/columnstore/devregression/r/mcs7190_regression_bug5932.result b/mysql-test/columnstore/devregression/r/mcs7190_regression_bug5932.result index 68a9c2285..e578fe3b7 100644 --- a/mysql-test/columnstore/devregression/r/mcs7190_regression_bug5932.result +++ b/mysql-test/columnstore/devregression/r/mcs7190_regression_bug5932.result @@ -1,7 +1,5 @@ USE tpch1; drop table if exists bug5932; -Warnings: -Note 1051 Unknown table 'tpch1.bug5932' create table bug5932(c1 int)engine=columnstore; insert into bug5932 select 1 from lineitem; insert into bug5932 values (2); diff --git a/mysql-test/columnstore/devregression/r/mcs7193_regression_bug6113.result b/mysql-test/columnstore/devregression/r/mcs7193_regression_bug6113.result index 1df86cd5d..b684660d2 100644 --- a/mysql-test/columnstore/devregression/r/mcs7193_regression_bug6113.result +++ b/mysql-test/columnstore/devregression/r/mcs7193_regression_bug6113.result @@ -1,7 +1,5 @@ USE tpch1; drop table if exists t; -Warnings: -Note 1051 Unknown table 'tpch1.t' create table t(a bigint, b varchar(10)) engine=columnstore; insert into t values (1, 'hi'); insert into t values (1, 'hello'); @@ -14,8 +12,6 @@ a b rnum 2 bye 1 2 good night 2 drop view if exists v; -Warnings: -Note 4092 Unknown VIEW: 'tpch1.v' create view v as select * from t; select v.*, row_number() over (partition by a order by b) as rnum from v; a b rnum diff --git a/mysql-test/columnstore/devregression/r/mcs7195_regression_bug6134.result b/mysql-test/columnstore/devregression/r/mcs7195_regression_bug6134.result index b276f89c7..75c1f70fe 100644 --- a/mysql-test/columnstore/devregression/r/mcs7195_regression_bug6134.result +++ b/mysql-test/columnstore/devregression/r/mcs7195_regression_bug6134.result @@ -1,15 +1,9 @@ USE tpch1; drop table if exists bug6134; -Warnings: -Note 1051 Unknown table 'tpch1.bug6134' create table bug6134 (a integer) engine=Columnstore; drop table if exists bug6134u; -Warnings: -Note 1051 Unknown table 'tpch1.bug6134u' create table bug6134u (b integer, c varchar(20)) engine=Columnstore; drop view if exists bug6134vv; -Warnings: -Note 4092 Unknown VIEW: 'tpch1.bug6134vv' create or replace view bug6134vv as select distinct * from bug6134 t inner join bug6134u u on t.a = u.b; insert into bug6134 values (1); diff --git a/mysql-test/columnstore/devregression/r/mcs7196_regression_bug752.result b/mysql-test/columnstore/devregression/r/mcs7196_regression_bug752.result index c6fd79b5e..0cf63c100 100644 --- a/mysql-test/columnstore/devregression/r/mcs7196_regression_bug752.result +++ b/mysql-test/columnstore/devregression/r/mcs7196_regression_bug752.result @@ -1,10 +1,6 @@ USE tpch1; DROP TABLE if exists `source`; -Warnings: -Note 1051 Unknown table 'tpch1.source' DROP TABLE if exists `dest`; -Warnings: -Note 1051 Unknown table 'tpch1.dest' CREATE TABLE `source` ( `datum` date NOT NULL, `datum_hour` datetime NOT NULL, diff --git a/mysql-test/columnstore/devregression/r/mcs7198_regression_MCOL-1246.result b/mysql-test/columnstore/devregression/r/mcs7198_regression_MCOL-1246.result index 16680ab74..18b45cd13 100644 --- a/mysql-test/columnstore/devregression/r/mcs7198_regression_MCOL-1246.result +++ b/mysql-test/columnstore/devregression/r/mcs7198_regression_MCOL-1246.result @@ -1,13 +1,7 @@ USE tpch1; drop table if exists mcol1246a; -Warnings: -Note 1051 Unknown table 'tpch1.mcol1246a' drop table if exists mcol1246b; -Warnings: -Note 1051 Unknown table 'tpch1.mcol1246b' drop table if exists mcol1246c; -Warnings: -Note 1051 Unknown table 'tpch1.mcol1246c' create table mcol1246a (a int, b varchar(7)) engine=columnstore; create table mcol1246b (a int, b varchar(20)) engine=columnstore; create table mcol1246c (a int, b text) engine=columnstore; diff --git a/mysql-test/columnstore/devregression/r/mcs7199_regression_MCOL-128.result b/mysql-test/columnstore/devregression/r/mcs7199_regression_MCOL-128.result index d7ca06220..91ca2bb93 100644 --- a/mysql-test/columnstore/devregression/r/mcs7199_regression_MCOL-128.result +++ b/mysql-test/columnstore/devregression/r/mcs7199_regression_MCOL-128.result @@ -1,7 +1,5 @@ USE tpch1; DROP TABLE IF EXISTS mcol128; -Warnings: -Note 1051 Unknown table 'tpch1.mcol128' CREATE TABLE mcol128 (a int, b varchar(50)); INSERT INTO mcol128 VALUES (1, 'hello'),(2, 'world'); SELECT * FROM mcol128; @@ -19,8 +17,6 @@ a b 1 hello 2 world DROP TABLE IF EXISTS mcol128_clone; -Warnings: -Note 1051 Unknown table 'tpch1.mcol128_clone' CREATE TABLE mcol128_clone ENGINE=Columnstore AS SELECT * FROM mcol128; SELECT * FROM mcol128_clone; a b diff --git a/mysql-test/columnstore/devregression/r/mcs7200_regression_MCOL-1403.result b/mysql-test/columnstore/devregression/r/mcs7200_regression_MCOL-1403.result index a39dc68e9..b723c2e3f 100644 --- a/mysql-test/columnstore/devregression/r/mcs7200_regression_MCOL-1403.result +++ b/mysql-test/columnstore/devregression/r/mcs7200_regression_MCOL-1403.result @@ -1,10 +1,6 @@ USE tpch1; drop table if exists mcol1403a; -Warnings: -Note 1051 Unknown table 'tpch1.mcol1403a' drop table if exists mcol1403b; -Warnings: -Note 1051 Unknown table 'tpch1.mcol1403b' create table mcol1403a (a int, b varchar(4)) engine=columnstore; create table mcol1403b (a int, b char(20), c varchar(20)) engine=columnstore; insert into mcol1403a values (1, 'ABC '); diff --git a/mysql-test/columnstore/devregression/r/mcs7201_regression_MCOL-1531.result b/mysql-test/columnstore/devregression/r/mcs7201_regression_MCOL-1531.result index 8958b1047..350777cca 100644 --- a/mysql-test/columnstore/devregression/r/mcs7201_regression_MCOL-1531.result +++ b/mysql-test/columnstore/devregression/r/mcs7201_regression_MCOL-1531.result @@ -1,10 +1,6 @@ USE tpch1; DROP TABLE IF EXISTS cs1; -Warnings: -Note 1051 Unknown table 'tpch1.cs1' DROP TABLE IF EXISTS cs2; -Warnings: -Note 1051 Unknown table 'tpch1.cs2' CREATE TABLE `cs1` ( `t` varchar(2) DEFAULT NULL, `i` int(11) DEFAULT NULL diff --git a/mysql-test/columnstore/devregression/r/mcs7203_regression_MCOL-1559.result b/mysql-test/columnstore/devregression/r/mcs7203_regression_MCOL-1559.result index 088f21b09..0113895fd 100644 --- a/mysql-test/columnstore/devregression/r/mcs7203_regression_MCOL-1559.result +++ b/mysql-test/columnstore/devregression/r/mcs7203_regression_MCOL-1559.result @@ -1,7 +1,5 @@ USE tpch1; drop table if exists mcol1559; -Warnings: -Note 1051 Unknown table 'tpch1.mcol1559' create table mcol1559 (c7nospace char(7), c7space char(7), c20nospace char(20), c20space char(20), vcnospace varchar(20), vcspace varchar(20)) engine=columnstore; insert into mcol1559 values ("ABC", "ABC ", "ABC12345678910", "ABC12345678910 ", "ABC", "ABC "); select * from mcol1559 where c7nospace = "ABC"; diff --git a/mysql-test/columnstore/devregression/r/mcs7204_regression_MCOL-163.result b/mysql-test/columnstore/devregression/r/mcs7204_regression_MCOL-163.result index 3be757558..5931735b5 100644 --- a/mysql-test/columnstore/devregression/r/mcs7204_regression_MCOL-163.result +++ b/mysql-test/columnstore/devregression/r/mcs7204_regression_MCOL-163.result @@ -1,7 +1,5 @@ USE tpch1; drop table if exists test.mcol163; -Warnings: -Note 1051 Unknown table 'test.mcol163' create table test.mcol163 (a int, b double, c double precision) engine=columnstore; insert into test.mcol163 values (1,1.1,1.1); select * from test.mcol163; diff --git a/mysql-test/columnstore/devregression/r/mcs7206_regression_MCOL-1676.result b/mysql-test/columnstore/devregression/r/mcs7206_regression_MCOL-1676.result index 8856b91cf..044e6da34 100644 --- a/mysql-test/columnstore/devregression/r/mcs7206_regression_MCOL-1676.result +++ b/mysql-test/columnstore/devregression/r/mcs7206_regression_MCOL-1676.result @@ -1,7 +1,5 @@ USE tpch1; DROP TABLE IF EXISTS query_class_metrics_float; -Warnings: -Note 1051 Unknown table 'tpch1.query_class_metrics_float' CREATE TABLE `query_class_metrics_float` ( `agent_id` bigint(20) DEFAULT NULL, `start_ts` datetime DEFAULT NULL, diff --git a/mysql-test/columnstore/devregression/r/mcs7207_regression_MCOL-1829.result b/mysql-test/columnstore/devregression/r/mcs7207_regression_MCOL-1829.result index c5ab52b53..0f3e37084 100644 --- a/mysql-test/columnstore/devregression/r/mcs7207_regression_MCOL-1829.result +++ b/mysql-test/columnstore/devregression/r/mcs7207_regression_MCOL-1829.result @@ -1,7 +1,5 @@ USE tpch1; drop table if exists `football_teams`; -Warnings: -Note 1051 Unknown table 'tpch1.football_teams' CREATE TABLE `football_teams` ( `num` int(11) DEFAULT NULL, `name` varchar(32) DEFAULT NULL, diff --git a/mysql-test/columnstore/devregression/r/mcs7208_regression_MCOL-1989.result b/mysql-test/columnstore/devregression/r/mcs7208_regression_MCOL-1989.result index 8a36f1421..0e9951b29 100644 --- a/mysql-test/columnstore/devregression/r/mcs7208_regression_MCOL-1989.result +++ b/mysql-test/columnstore/devregression/r/mcs7208_regression_MCOL-1989.result @@ -1,22 +1,10 @@ USE tpch1; DROP VIEW IF EXISTS vv2; -Warnings: -Note 4092 Unknown VIEW: 'tpch1.vv2' DROP VIEW IF EXISTS vv1; -Warnings: -Note 4092 Unknown VIEW: 'tpch1.vv1' DROP TABLE IF EXISTS vt1; -Warnings: -Note 1051 Unknown table 'tpch1.vt1' DROP TABLE IF EXISTS vt2; -Warnings: -Note 1051 Unknown table 'tpch1.vt2' DROP TABLE IF EXISTS vt3; -Warnings: -Note 1051 Unknown table 'tpch1.vt3' DROP TABLE IF EXISTS vt4; -Warnings: -Note 1051 Unknown table 'tpch1.vt4' CREATE TABLE `vt1` ( `num_sample_id` int(11) DEFAULT NULL, `sample_id` varchar(32) DEFAULT NULL, diff --git a/mysql-test/columnstore/devregression/r/mcs7209_regression_MCOL-2050.result b/mysql-test/columnstore/devregression/r/mcs7209_regression_MCOL-2050.result index fb1e82e29..43150020b 100644 --- a/mysql-test/columnstore/devregression/r/mcs7209_regression_MCOL-2050.result +++ b/mysql-test/columnstore/devregression/r/mcs7209_regression_MCOL-2050.result @@ -1,7 +1,5 @@ USE tpch1; drop table if exists `football_teams`; -Warnings: -Note 1051 Unknown table 'tpch1.football_teams' CREATE TABLE `football_teams` ( `num` int(11) DEFAULT NULL, `name` varchar(32) DEFAULT NULL, diff --git a/mysql-test/columnstore/devregression/r/mcs7211_regression_MCOL-2096.result b/mysql-test/columnstore/devregression/r/mcs7211_regression_MCOL-2096.result index c177e4f07..93ab20cfd 100644 --- a/mysql-test/columnstore/devregression/r/mcs7211_regression_MCOL-2096.result +++ b/mysql-test/columnstore/devregression/r/mcs7211_regression_MCOL-2096.result @@ -1,7 +1,5 @@ USE tpch1; drop table if exists t; -Warnings: -Note 1051 Unknown table 'tpch1.t' create table t(a int, b int) engine=columnstore; insert into t(a,b) values(1,4),(2,3),(3,2),(4,1); select diff --git a/mysql-test/columnstore/devregression/r/mcs7213_regression_MCOL-2225.result b/mysql-test/columnstore/devregression/r/mcs7213_regression_MCOL-2225.result index a61dd4771..c34875aa9 100644 --- a/mysql-test/columnstore/devregression/r/mcs7213_regression_MCOL-2225.result +++ b/mysql-test/columnstore/devregression/r/mcs7213_regression_MCOL-2225.result @@ -1,10 +1,6 @@ USE tpch1; drop table if exists mcol2225i; -Warnings: -Note 1051 Unknown table 'tpch1.mcol2225i' drop table if exists mcol2225c; -Warnings: -Note 1051 Unknown table 'tpch1.mcol2225c' CREATE USER IF NOT EXISTS'cejuser'@'localhost' IDENTIFIED BY 'Vagrant1!0000001'; GRANT ALL PRIVILEGES ON *.* TO 'cejuser'@'localhost'; FLUSH PRIVILEGES; diff --git a/mysql-test/columnstore/devregression/r/mcs7214_regression_MCOL-2267.result b/mysql-test/columnstore/devregression/r/mcs7214_regression_MCOL-2267.result index 4caa2c618..d9441f611 100644 --- a/mysql-test/columnstore/devregression/r/mcs7214_regression_MCOL-2267.result +++ b/mysql-test/columnstore/devregression/r/mcs7214_regression_MCOL-2267.result @@ -1,10 +1,6 @@ USE tpch1; DROP TABLE IF EXISTS `MCOL-2267a`; -Warnings: -Note 1051 Unknown table 'tpch1.mcol-2267a' DROP TABLE IF EXISTS `MCOL-2267b`; -Warnings: -Note 1051 Unknown table 'tpch1.mcol-2267b' CREATE TABLE `MCOL-2267a` ( `thing1` varchar(32) DEFAULT NULL, `my_id` varchar(8) DEFAULT NULL, diff --git a/mysql-test/columnstore/devregression/r/mcs7215_regression_MCOL-3267.result b/mysql-test/columnstore/devregression/r/mcs7215_regression_MCOL-3267.result index 04fc84407..7a582c46b 100644 --- a/mysql-test/columnstore/devregression/r/mcs7215_regression_MCOL-3267.result +++ b/mysql-test/columnstore/devregression/r/mcs7215_regression_MCOL-3267.result @@ -1,10 +1,6 @@ USE tpch1; DROP TABLE IF EXISTS t1; -Warnings: -Note 1051 Unknown table 'tpch1.t1' DROP TABLE IF EXISTS t2; -Warnings: -Note 1051 Unknown table 'tpch1.t2' CREATE TABLE t1 (a bigint, b bigint)engine=columnstore; CREATE TABLE t2 (a bigint, b bigint)engine=columnstore; INSERT INTO t1 VALUES (5,5),(4,4),(3,3); @@ -25,3 +21,5 @@ a b 4 4 5 5 5 5 +DROP TABLE IF EXISTS t1; +DROP TABLE IF EXISTS t2; diff --git a/mysql-test/columnstore/devregression/r/mcs7216_regression_MCOL-3304.result b/mysql-test/columnstore/devregression/r/mcs7216_regression_MCOL-3304.result index a912d7967..f41a4a964 100644 --- a/mysql-test/columnstore/devregression/r/mcs7216_regression_MCOL-3304.result +++ b/mysql-test/columnstore/devregression/r/mcs7216_regression_MCOL-3304.result @@ -1,7 +1,5 @@ USE tpch1; DROP TABLE IF EXISTS `MCOL3304`; -Warnings: -Note 1051 Unknown table 'tpch1.mcol3304' CREATE TABLE `MCOL3304` ( `c` decimal(5,2) DEFAULT NULL ) ENGINE=columnstore; diff --git a/mysql-test/columnstore/devregression/r/mcs7217_regression_MCOL-3317.result b/mysql-test/columnstore/devregression/r/mcs7217_regression_MCOL-3317.result index 988bee822..229e64cd1 100644 --- a/mysql-test/columnstore/devregression/r/mcs7217_regression_MCOL-3317.result +++ b/mysql-test/columnstore/devregression/r/mcs7217_regression_MCOL-3317.result @@ -1,7 +1,5 @@ USE tpch1; DROP TABLE IF EXISTS `mcol-498`; -Warnings: -Note 1051 Unknown table 'tpch1.mcol-498' CREATE TABLE `mcol-498` (i BIGINT) ENGINE=columnstore; INSERT INTO `mcol-498` VALUES (42),(6); DELETE FROM `mcol-498` WHERE i = 42; diff --git a/mysql-test/columnstore/devregression/r/mcs7219_regression_MCOL-3395.result b/mysql-test/columnstore/devregression/r/mcs7219_regression_MCOL-3395.result index f897b74c2..19c285e4e 100644 --- a/mysql-test/columnstore/devregression/r/mcs7219_regression_MCOL-3395.result +++ b/mysql-test/columnstore/devregression/r/mcs7219_regression_MCOL-3395.result @@ -1,7 +1,5 @@ USE tpch1; drop table if exists mcol3395; -Warnings: -Note 1051 Unknown table 'tpch1.mcol3395' create table mcol3395 (c1 char(10), c2 varchar(10), c3 varchar(6))engine=columnstore; insert into mcol3395 values ('abc','cde','abc'), ('cde','abc','cde'); select * from mcol3395 where c2='abc'; diff --git a/mysql-test/columnstore/devregression/r/mcs7220_regression_MCOL-3423.result b/mysql-test/columnstore/devregression/r/mcs7220_regression_MCOL-3423.result index b9af19ce2..ccd849f3a 100644 --- a/mysql-test/columnstore/devregression/r/mcs7220_regression_MCOL-3423.result +++ b/mysql-test/columnstore/devregression/r/mcs7220_regression_MCOL-3423.result @@ -1,7 +1,5 @@ USE tpch1; DROP TABLE IF EXISTS tc; -Warnings: -Note 1051 Unknown table 'tpch1.tc' CREATE TABLE `tc` ( `id` int(11) NOT NULL, `cid` int(11) DEFAULT NULL, diff --git a/mysql-test/columnstore/devregression/r/mcs7221_regression_MCOL-3434.result b/mysql-test/columnstore/devregression/r/mcs7221_regression_MCOL-3434.result index 395cb5ec0..d03a20f97 100644 --- a/mysql-test/columnstore/devregression/r/mcs7221_regression_MCOL-3434.result +++ b/mysql-test/columnstore/devregression/r/mcs7221_regression_MCOL-3434.result @@ -1,10 +1,6 @@ USE tpch1; DROP TABLE IF EXISTS MCOL3434CS; -Warnings: -Note 1051 Unknown table 'tpch1.mcol3434cs' DROP TABLE IF EXISTS MCOL3434INNO; -Warnings: -Note 1051 Unknown table 'tpch1.mcol3434inno' CREATE TABLE `MCOL3434INNO` (`id` int(11) NOT NULL AUTO_INCREMENT, `cid` int(11) DEFAULT NULL, `d` datetime DEFAULT NULL, diff --git a/mysql-test/columnstore/devregression/r/mcs7222_regression_MCOL-3448.result b/mysql-test/columnstore/devregression/r/mcs7222_regression_MCOL-3448.result index 204bb971b..3b2cc8781 100644 --- a/mysql-test/columnstore/devregression/r/mcs7222_regression_MCOL-3448.result +++ b/mysql-test/columnstore/devregression/r/mcs7222_regression_MCOL-3448.result @@ -1,7 +1,5 @@ USE tpch1; DROP TABLE IF EXISTS dim_date; -Warnings: -Note 1051 Unknown table 'tpch1.dim_date' create table dim_date(semaine varchar(10), date_jour date, val int) engine=columnstore; insert into dim_date values ('2019-S08','2019-02-18',1), diff --git a/mysql-test/columnstore/devregression/r/mcs7223_regression_MCOL-3485.result b/mysql-test/columnstore/devregression/r/mcs7223_regression_MCOL-3485.result index 79c65e3fc..94f848293 100644 --- a/mysql-test/columnstore/devregression/r/mcs7223_regression_MCOL-3485.result +++ b/mysql-test/columnstore/devregression/r/mcs7223_regression_MCOL-3485.result @@ -1,7 +1,5 @@ USE tpch1; drop table if exists t; -Warnings: -Note 1051 Unknown table 'tpch1.t' create table t(a int, b varchar(10), c decimal(7,2)) engine=columnstore; insert into t(a,b,c) values (1,'x',10),(2,'x',11), (3, 'x', 12), (1,'y',12),(2,'y',11), (3, 'y', 10); select a as bu, diff --git a/mysql-test/columnstore/devregression/r/mcs7225_regression_MCOL-3721.result b/mysql-test/columnstore/devregression/r/mcs7225_regression_MCOL-3721.result index f0ac354d5..e905040f0 100644 --- a/mysql-test/columnstore/devregression/r/mcs7225_regression_MCOL-3721.result +++ b/mysql-test/columnstore/devregression/r/mcs7225_regression_MCOL-3721.result @@ -1,7 +1,5 @@ USE tpch1; DROP TABLE IF EXISTS test_collate; -Warnings: -Note 1051 Unknown table 'tpch1.test_collate' CREATE TABLE test_collate (a INT, b INT) ENGINE=columnstore; INSERT INTO test_collate VALUES (1,2), (2,4); SELECT a, b FROM test_collate ORDER BY a COLLATE latin1_german2_ci; @@ -35,9 +33,6 @@ DESCRIBE t1; Field Type Null Key Default Extra col1 char(10) YES NULL DROP TABLE IF EXISTS t1; -DROP TABLE IF EXISTS t1; -Warnings: -Note 1051 Unknown table 'tpch1.t1' CREATE TABLE t1 (col1 CHAR(10) CHARACTER SET utf8 COLLATE utf8_unicode_ci) ENGINE=columnstore; INSERT INTO t1 VALUES ('a'), ('1'), ('-1'); SELECT col1 FROM t1; diff --git a/mysql-test/columnstore/devregression/r/mcs7226_regression_MCOL_3747.result b/mysql-test/columnstore/devregression/r/mcs7226_regression_MCOL_3747.result index a9c3d4701..22d679bda 100644 --- a/mysql-test/columnstore/devregression/r/mcs7226_regression_MCOL_3747.result +++ b/mysql-test/columnstore/devregression/r/mcs7226_regression_MCOL_3747.result @@ -1,7 +1,5 @@ USE tpch1; drop table if exists cs1; -Warnings: -Note 1051 Unknown table 'tpch1.cs1' create table cs1(key_ bigint) engine=columnstore; insert into cs1 values (42),(43),(45),(666),(777),(333); select key_, count(*) from cs1 where key_ in (select * from (select key_ from cs1 group by key_ order by key_ limit 2) a1) group by key_ order by 1; diff --git a/mysql-test/columnstore/devregression/r/mcs7228_regression_MCOL-3813.result b/mysql-test/columnstore/devregression/r/mcs7228_regression_MCOL-3813.result index f13153bd6..fb054f80d 100644 --- a/mysql-test/columnstore/devregression/r/mcs7228_regression_MCOL-3813.result +++ b/mysql-test/columnstore/devregression/r/mcs7228_regression_MCOL-3813.result @@ -1,19 +1,8 @@ USE tpch1; -/* FROM MCOL-1349 -Note: Adding this because code that directly involved this bug was modified -Other regression involved is working_tpch1_compareLogOnly/misc/bug5764.sql*/ drop table if exists t3813_1; -Warnings: -Note 1051 Unknown table 'tpch1.t3813_1' drop table if exists t3813_2; -Warnings: -Note 1051 Unknown table 'tpch1.t3813_2' drop table if exists t3813_3; -Warnings: -Note 1051 Unknown table 'tpch1.t3813_3' drop table if exists t3813_4; -Warnings: -Note 1051 Unknown table 'tpch1.t3813_4' create table t3813_1 (id int )ENGINE=COLUMNSTORE DEFAULT CHARSET=UTF8MB4; @@ -34,27 +23,20 @@ insert into t3813_1(id) values(1); insert into t3813_2(id2, snapshot_date) values(1,'2020-05-09'); insert into t3813_3(id3, from_date, to_date) values(1,'2020-05-09'-interval 1 day, '2020-05-09'+interval 2 day); insert into t3813_4(id4, category) values(1, 'cat-1'); -/*PREPARATION END*/ -/*THE PROBLEM: The SELECT itself below runs properly, but calling it from view the 1815 error is thrown*/ select * from t3813_1 t3813_1 LEFT JOIN t3813_4 t3813_4 ON (t3813_1.id = t3813_4.id4) LEFT JOIN t3813_2 t3813_2 ON (t3813_1.id = t3813_2.id2) LEFT JOIN t3813_3 t3813_3 ON (t3813_2.id2 = t3813_3.id3 AND t3813_2.snapshot_date BETWEEN t3813_3.from_date AND t3813_3.to_date); id id4 category id2 snapshot_date id3 from_date to_date 1 1 cat-1 1 2020-05-09 1 2020-05-08 2020-05-11 -/*Creating VIEW based on the SELECT above*/ create or replace view view_test as select * from t3813_1 t3813_1 LEFT JOIN t3813_4 t3813_4 ON (t3813_1.id = t3813_4.id4) LEFT JOIN t3813_2 t3813_2 ON (t3813_1.id = t3813_2.id2) LEFT JOIN t3813_3 t3813_3 ON (t3813_2.id2 = t3813_3.id3 AND t3813_2.snapshot_date BETWEEN t3813_3.from_date AND t3813_3.to_date); -/*SELECT from the VIEW throws the error: Error Code: 1815. Internal error: On clause filter involving a table not directly involved in the outer join is currently not supported.*/ select * from view_test; id id4 category id2 snapshot_date id3 from_date to_date 1 1 cat-1 1 2020-05-09 1 2020-05-08 2020-05-11 -/*Notes*/ -/*If I remove either the 1st or the 3rd LEFT JOINs from the VIEW definition, the SELECT * from VIEW will work. (I cannot remove the 2nd LEFT JOIN since the 3rd is based on that one)*/ -/*Replacing COLUMNSTORE engine to INNODB the view the SELECT * from VIEW will work, but if one of the tables is COLUMNSTORE the error will thrown*/ drop table if exists t3813_1; drop table if exists t3813_2; drop table if exists t3813_3; diff --git a/mysql-test/columnstore/devregression/r/mcs7229_regression_MCOL-3839.result b/mysql-test/columnstore/devregression/r/mcs7229_regression_MCOL-3839.result index 82b994f7e..d07891875 100644 --- a/mysql-test/columnstore/devregression/r/mcs7229_regression_MCOL-3839.result +++ b/mysql-test/columnstore/devregression/r/mcs7229_regression_MCOL-3839.result @@ -1,7 +1,5 @@ USE tpch1; drop table if exists test_wf_count_with_constants; -Warnings: -Note 1051 Unknown table 'tpch1.test_wf_count_with_constants' create table test_wf_count_with_constants (t1 int) engine=columnstore; insert into test_wf_count_with_constants values (1); select count(null) over () from test_wf_count_with_constants; diff --git a/mysql-test/columnstore/devregression/r/mcs7233_regression_MCOL-477.result b/mysql-test/columnstore/devregression/r/mcs7233_regression_MCOL-477.result index be9eefdf2..4f052b278 100644 --- a/mysql-test/columnstore/devregression/r/mcs7233_regression_MCOL-477.result +++ b/mysql-test/columnstore/devregression/r/mcs7233_regression_MCOL-477.result @@ -1,7 +1,5 @@ USE tpch1; drop table if exists test.mcol477; -Warnings: -Note 1051 Unknown table 'test.mcol477' create table test.mcol477 (a int, b int) engine=columnstore comment='autoincrement=a,9'; insert into test.mcol477 set b=1; select * from test.mcol477; diff --git a/mysql-test/columnstore/devregression/r/mcs7236_regression_MCOL-736.result b/mysql-test/columnstore/devregression/r/mcs7236_regression_MCOL-736.result index fc55ffc32..ac70ceec0 100644 --- a/mysql-test/columnstore/devregression/r/mcs7236_regression_MCOL-736.result +++ b/mysql-test/columnstore/devregression/r/mcs7236_regression_MCOL-736.result @@ -1,7 +1,5 @@ USE tpch1; DROP TABLE IF EXISTS MCOL_736; -Warnings: -Note 1051 Unknown table 'tpch1.mcol_736' CREATE TABLE `MCOL_736` ( `code` varchar(255) NOT NULL ) ENGINE=InnoDB; diff --git a/mysql-test/columnstore/devregression/r/mcs7237_regression_MCOL-812.result b/mysql-test/columnstore/devregression/r/mcs7237_regression_MCOL-812.result index d122ecbc4..4ce42555e 100644 --- a/mysql-test/columnstore/devregression/r/mcs7237_regression_MCOL-812.result +++ b/mysql-test/columnstore/devregression/r/mcs7237_regression_MCOL-812.result @@ -1,10 +1,6 @@ USE tpch1; DROP TABLE IF EXISTS test.mcol812a; -Warnings: -Note 1051 Unknown table 'test.mcol812a' DROP TABLE IF EXISTS test.mcol812b; -Warnings: -Note 1051 Unknown table 'test.mcol812b' CREATE USER IF NOT EXISTS'cejuser'@'localhost' IDENTIFIED BY 'Vagrant1!0000001'; GRANT ALL PRIVILEGES ON *.* TO 'cejuser'@'localhost'; FLUSH PRIVILEGES; diff --git a/mysql-test/columnstore/devregression/r/mcs7238_regression_MCOL-830.result b/mysql-test/columnstore/devregression/r/mcs7238_regression_MCOL-830.result index cfdfcd657..2439df747 100644 --- a/mysql-test/columnstore/devregression/r/mcs7238_regression_MCOL-830.result +++ b/mysql-test/columnstore/devregression/r/mcs7238_regression_MCOL-830.result @@ -1,10 +1,6 @@ USE tpch1; DROP TABLE IF EXISTS test.mcol830a; -Warnings: -Note 1051 Unknown table 'test.mcol830a' DROP TABLE IF EXISTS test.mcol830b; -Warnings: -Note 1051 Unknown table 'test.mcol830b' CREATE TABLE test.mcol830a ( `c1` int(11) DEFAULT NULL, `c2` varchar(64) DEFAULT NULL diff --git a/mysql-test/columnstore/devregression/r/mcs7239_regression_MCOL-979.result b/mysql-test/columnstore/devregression/r/mcs7239_regression_MCOL-979.result index 081675437..7e394d23f 100644 --- a/mysql-test/columnstore/devregression/r/mcs7239_regression_MCOL-979.result +++ b/mysql-test/columnstore/devregression/r/mcs7239_regression_MCOL-979.result @@ -1,7 +1,5 @@ USE tpch1; drop table if exists mcol979; -Warnings: -Note 1051 Unknown table 'tpch1.mcol979' create table mcol979 (a int, b double, c CHAR(1), d CHAR(2), e CHAR(3), f CHAR(4), g CHAR(8), h CHAR(16), m VARCHAR(32)) engine=columnstore; insert into mcol979 values (1,1.1,'a','ab','abc','abcd','abcdefgh','abcdefghijklmnop','abcdefghijklmnopqrstuvwxyz123456'); diff --git a/mysql-test/columnstore/devregression/r/mcs7245_regression_bug2977.result b/mysql-test/columnstore/devregression/r/mcs7245_regression_bug2977.result index 30faf2db7..49f0b1aef 100644 --- a/mysql-test/columnstore/devregression/r/mcs7245_regression_bug2977.result +++ b/mysql-test/columnstore/devregression/r/mcs7245_regression_bug2977.result @@ -1,13 +1,7 @@ USE tpch1; drop table if exists `shipamounts`; -Warnings: -Note 1051 Unknown table 'tpch1.shipamounts' drop table if exists `ship1`; -Warnings: -Note 1051 Unknown table 'tpch1.ship1' drop table if exists `ship2`; -Warnings: -Note 1051 Unknown table 'tpch1.ship2' CREATE TABLE `shipamounts` ( `OrderNum` varchar(50) DEFAULT NULL, `OrderLine` int(11) DEFAULT NULL, diff --git a/mysql-test/columnstore/devregression/r/mcs7247_regression_bug3038b.result b/mysql-test/columnstore/devregression/r/mcs7247_regression_bug3038b.result index cd1fc8c38..e911c76cf 100644 --- a/mysql-test/columnstore/devregression/r/mcs7247_regression_bug3038b.result +++ b/mysql-test/columnstore/devregression/r/mcs7247_regression_bug3038b.result @@ -1,12 +1,6 @@ USE tpch1; -/* Test case from Radek at CognitiveMatch - customer who bought based on us adding the multi-value in clause feature. */ -/* First test using IDB tables. */ drop table if exists agg_fact_pageview; -Warnings: -Note 1051 Unknown table 'tpch1.agg_fact_pageview' drop table if exists dim_date; -Warnings: -Note 1051 Unknown table 'tpch1.dim_date' create table AGG_FACT_PAGEVIEW ( server_day_date date , diff --git a/mysql-test/columnstore/devregression/r/mcs7248_regression_bug3038c.result b/mysql-test/columnstore/devregression/r/mcs7248_regression_bug3038c.result index ea2a17056..a7eba53c3 100644 --- a/mysql-test/columnstore/devregression/r/mcs7248_regression_bug3038c.result +++ b/mysql-test/columnstore/devregression/r/mcs7248_regression_bug3038c.result @@ -1,12 +1,6 @@ USE tpch1; -/* Test case from Radek at CognitiveMatch - customer who bought based on us adding the multi-value in clause feature. */ -/* Second test using myisam tables. */ drop table if exists agg_fact_pageview; -Warnings: -Note 1051 Unknown table 'tpch1.agg_fact_pageview' drop table if exists dim_date; -Warnings: -Note 1051 Unknown table 'tpch1.dim_date' create table AGG_FACT_PAGEVIEW ( server_day_date date , diff --git a/mysql-test/columnstore/devregression/r/mcs7250_regression_bug4594.result b/mysql-test/columnstore/devregression/r/mcs7250_regression_bug4594.result index f27e003cc..34fe04602 100644 --- a/mysql-test/columnstore/devregression/r/mcs7250_regression_bug4594.result +++ b/mysql-test/columnstore/devregression/r/mcs7250_regression_bug4594.result @@ -4,8 +4,6 @@ select substr(@x, length(@x)-6, 10); substr(@x, length(@x)-6, 10) Enabled drop table if exists bug4594; -Warnings: -Note 1051 Unknown table 'tpch1.bug4594' create table if not exists bug4594(c1 char(5))engine=columnstore; insert into bug4594 values ('abc'), ('def'); select * from bug4594; diff --git a/mysql-test/columnstore/devregression/r/mcs7251_regression_bug5315.result b/mysql-test/columnstore/devregression/r/mcs7251_regression_bug5315.result index c3d3d1318..650281543 100644 --- a/mysql-test/columnstore/devregression/r/mcs7251_regression_bug5315.result +++ b/mysql-test/columnstore/devregression/r/mcs7251_regression_bug5315.result @@ -1,7 +1,5 @@ USE tpch1; drop table if exists trow; -Warnings: -Note 1051 Unknown table 'tpch1.trow' create table trow(col1 int, col2 int) engine=columnstore; insert into trow values(1,2),(3,4); select * from trow; diff --git a/mysql-test/columnstore/devregression/r/mcs7252_regression_MCOL-669.result b/mysql-test/columnstore/devregression/r/mcs7252_regression_MCOL-669.result index d93e29758..1cb71eea5 100644 --- a/mysql-test/columnstore/devregression/r/mcs7252_regression_MCOL-669.result +++ b/mysql-test/columnstore/devregression/r/mcs7252_regression_MCOL-669.result @@ -1,10 +1,6 @@ USE tpch1; drop table if exists MCOL_669_a; -Warnings: -Note 1051 Unknown table 'tpch1.mcol_669_a' drop table if exists MCOL_669_B; -Warnings: -Note 1051 Unknown table 'tpch1.mcol_669_b' CREATE TABLE MCOL_669_a (a int, b text) engine=columnstore; CREATE TABLE MCOL_669_b (a int, b text) engine=columnstore; INSERT INTO MCOL_669_a VALUES (1, REPEAT('MariaDB ', 7500)); diff --git a/mysql-test/columnstore/devregression/r/mcs7253_regression_MCOL-670.result b/mysql-test/columnstore/devregression/r/mcs7253_regression_MCOL-670.result index 7e45f6db2..ad987e767 100644 --- a/mysql-test/columnstore/devregression/r/mcs7253_regression_MCOL-670.result +++ b/mysql-test/columnstore/devregression/r/mcs7253_regression_MCOL-670.result @@ -1,7 +1,5 @@ USE tpch1; drop table if exists MCOL_670; -Warnings: -Note 1051 Unknown table 'tpch1.mcol_670' CREATE TABLE MCOL_670 (a int, b text) engine=columnstore; INSERT INTO MCOL_670 VALUES (1, REPEAT('MariaDB ', 7500)); INSERT INTO MCOL_670 VALUES (2, REPEAT('MariaDB ', 7500)); diff --git a/mysql-test/columnstore/devregression/r/mcs7254_regression_MCOL-671.result b/mysql-test/columnstore/devregression/r/mcs7254_regression_MCOL-671.result index 3f81f8430..403475ce2 100644 --- a/mysql-test/columnstore/devregression/r/mcs7254_regression_MCOL-671.result +++ b/mysql-test/columnstore/devregression/r/mcs7254_regression_MCOL-671.result @@ -1,7 +1,5 @@ USE tpch1; drop table if exists MCOL_671; -Warnings: -Note 1051 Unknown table 'tpch1.mcol_671' CREATE TABLE MCOL_671 (a int, b text) engine=columnstore; INSERT INTO MCOL_671 VALUES (1, REPEAT('MariaDB ', 7500)); SELECT a, length(b) FROM MCOL_671 WHERE b > 'K'; diff --git a/mysql-test/columnstore/devregression/r/mcs7521_storedProcedures_sp.result b/mysql-test/columnstore/devregression/r/mcs7521_storedProcedures_sp.result index 16d0d2658..2ac0cbde6 100644 --- a/mysql-test/columnstore/devregression/r/mcs7521_storedProcedures_sp.result +++ b/mysql-test/columnstore/devregression/r/mcs7521_storedProcedures_sp.result @@ -1,22 +1,10 @@ USE tpch1; drop procedure if exists sp_simple_select; -Warnings: -Note 1305 PROCEDURE tpch1.sp_simple_select does not exist drop procedure if exists sp_simple_variable; -Warnings: -Note 1305 PROCEDURE tpch1.sp_simple_variable does not exist drop procedure if exists sp_simple_variables; -Warnings: -Note 1305 PROCEDURE tpch1.sp_simple_variables does not exist drop procedure if exists sp_complex_variable; -Warnings: -Note 1305 PROCEDURE tpch1.sp_complex_variable does not exist drop procedure if exists proc1; -Warnings: -Note 1305 PROCEDURE tpch1.proc1 does not exist DROP TABLE IF EXISTS t1; -Warnings: -Note 1051 Unknown table 'tpch1.t1' Create Procedure sp_simple_select( ) begin select * from part where p_partkey < 5; diff --git a/mysql-test/columnstore/devregression/r/mcs7523_partitionOptimization_aCreateViews.result b/mysql-test/columnstore/devregression/r/mcs7523_partitionOptimization_aCreateViews.result index 517125674..7024202c0 100644 --- a/mysql-test/columnstore/devregression/r/mcs7523_partitionOptimization_aCreateViews.result +++ b/mysql-test/columnstore/devregression/r/mcs7523_partitionOptimization_aCreateViews.result @@ -1,28 +1,12 @@ USE tpch1; drop view if exists v_nation; -Warnings: -Note 4092 Unknown VIEW: 'tpch1.v_nation' drop view if exists v_region; -Warnings: -Note 4092 Unknown VIEW: 'tpch1.v_region' drop view if exists v_customer; -Warnings: -Note 4092 Unknown VIEW: 'tpch1.v_customer' drop view if exists v_orders; -Warnings: -Note 4092 Unknown VIEW: 'tpch1.v_orders' drop view if exists v_supplier; -Warnings: -Note 4092 Unknown VIEW: 'tpch1.v_supplier' drop view if exists v_partsupp; -Warnings: -Note 4092 Unknown VIEW: 'tpch1.v_partsupp' drop view if exists v_part; -Warnings: -Note 4092 Unknown VIEW: 'tpch1.v_part' drop view if exists v_lineitem; -Warnings: -Note 4092 Unknown VIEW: 'tpch1.v_lineitem' create view v_nation as select * from nation where n_nationkey > 10 union all select * from nation where n_nationkey <= 10; create view v_region as select * from region where r_regionkey > 3 union all select * from region where r_regionkey <= 3; create view v_customer as select * from customer union all select * from customer where c_custkey=0; @@ -32,32 +16,14 @@ create view v_partsupp as select * from partsupp union all select * from partsup create view v_part as select * from part union all select * from part where p_partkey=0; create view v_lineitem as select * from lineitem union all select * from lineitem where l_orderkey=0; drop procedure if exists ordersColumnsTouched; -Warnings: -Note 1305 PROCEDURE tpch1.ordersColumnsTouched does not exist drop procedure if exists lineitemColumnsTouched; -Warnings: -Note 1305 PROCEDURE tpch1.lineitemColumnsTouched does not exist drop procedure if exists customerColumnsTouched; -Warnings: -Note 1305 PROCEDURE tpch1.customerColumnsTouched does not exist drop procedure if exists supplierColumnsTouched; -Warnings: -Note 1305 PROCEDURE tpch1.supplierColumnsTouched does not exist drop procedure if exists partColumnsTouched; -Warnings: -Note 1305 PROCEDURE tpch1.partColumnsTouched does not exist drop procedure if exists partsuppColumnsTouched; -Warnings: -Note 1305 PROCEDURE tpch1.partsuppColumnsTouched does not exist drop procedure if exists regionColumnsTouched; -Warnings: -Note 1305 PROCEDURE tpch1.regionColumnsTouched does not exist drop procedure if exists nationColumnsTouched; -Warnings: -Note 1305 PROCEDURE tpch1.nationColumnsTouched does not exist drop procedure if exists eliminatedBlocksGE; -Warnings: -Note 1305 PROCEDURE tpch1.eliminatedBlocksGE does not exist create procedure ordersColumnsTouched (in trace varchar(10000)) BEGIN select locate('o_orderkey', trace) > 0 as o_orderkey_accessed; select locate('o_custkey', trace) > 0 as o_custkey_accessed; diff --git a/mysql-test/columnstore/devregression/r/mcs7525_MCOL-829.result b/mysql-test/columnstore/devregression/r/mcs7525_MCOL-829.result index 2befa164a..28d9c5b10 100644 --- a/mysql-test/columnstore/devregression/r/mcs7525_MCOL-829.result +++ b/mysql-test/columnstore/devregression/r/mcs7525_MCOL-829.result @@ -1,13 +1,7 @@ USE tpch1; drop table if exists mcol829a; -Warnings: -Note 1051 Unknown table 'tpch1.mcol829a' drop table if exists mcol829b; -Warnings: -Note 1051 Unknown table 'tpch1.mcol829b' drop procedure if exists mcol829; -Warnings: -Note 1305 PROCEDURE tpch1.mcol829 does not exist create table mcol829a (a int, b int) engine=columnstore; create table mcol829b (a int, b int) engine=columnstore; insert into mcol829a values (1,1),(2,2),(3,3); diff --git a/mysql-test/columnstore/devregression/r/mcs7635_q212.result b/mysql-test/columnstore/devregression/r/mcs7635_q212.result index 178390bc9..f58998211 100644 --- a/mysql-test/columnstore/devregression/r/mcs7635_q212.result +++ b/mysql-test/columnstore/devregression/r/mcs7635_q212.result @@ -1,13 +1,9 @@ USE tpch1; drop database if exists test023_cs3; -Warnings: -Note 1008 Can't drop database 'test023_cs3'; database doesn't exist create database test023_cs3; use test023_cs3; SET SESSION sql_mode = 'ANSI_QUOTES'; drop table if exists "test023_cs3"."cs3"; -Warnings: -Note 1051 Unknown table 'test023_cs3.cs3' create table "test023_cs3"."cs3"(i int, t text) engine=columnstore; insert into "test023_cs3"."cs3" values (1,'Lorem ipsum dolor sit amet, consectetur adipiscing elit,'),(7,'sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.'),(8,'Ut enim ad minim veniam,'),(9,'quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(10,'Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore e'); select * from "test023_cs3"."cs3"; diff --git a/mysql-test/columnstore/devregression/r/mcs7636_q213.result b/mysql-test/columnstore/devregression/r/mcs7636_q213.result index f8b91f88e..64f28d9d5 100644 --- a/mysql-test/columnstore/devregression/r/mcs7636_q213.result +++ b/mysql-test/columnstore/devregression/r/mcs7636_q213.result @@ -1,16 +1,10 @@ USE tpch1; drop database if exists test023_cs3; -Warnings: -Note 1008 Can't drop database 'test023_cs3'; database doesn't exist drop database if exists test023_cs2; -Warnings: -Note 1008 Can't drop database 'test023_cs2'; database doesn't exist create database test023_cs3; create database test023_cs2; use test023_cs2; drop table if exists `test023_cs3`.`cs3`; -Warnings: -Note 1051 Unknown table 'test023_cs3.cs3' create table `test023_cs3`.`cs3`(i int, t text) engine=columnstore; insert into `test023_cs3`.`cs3` values (1,'Lorem ipsum dolor sit amet, consectetur adipiscing elit,'),(7,'sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.'),(8,'Ut enim ad minim veniam,'),(9,'quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(10,'Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore e'); select * from `test023_cs3`.`cs3`; diff --git a/mysql-test/columnstore/devregression/t/mcs7248_regression_bug3038c.test b/mysql-test/columnstore/devregression/t/mcs7248_regression_bug3038c.test index 0c2e85d0d..7063ae70d 100644 --- a/mysql-test/columnstore/devregression/t/mcs7248_regression_bug3038c.test +++ b/mysql-test/columnstore/devregression/t/mcs7248_regression_bug3038c.test @@ -8,9 +8,9 @@ # USE tpch1; # -/* Test case from Radek at CognitiveMatch - customer who bought based on us adding the multi-value in clause feature. */ +#/* Test case from Radek at CognitiveMatch - customer who bought based on us adding the multi-value in clause feature. */ -/* Second test using myisam tables. */ +#/* Second test using myisam tables. */ --disable_warnings drop table if exists agg_fact_pageview; drop table if exists dim_date; diff --git a/mysql-test/columnstore/devregression/t/mcs7524_view_sp.test b/mysql-test/columnstore/devregression/t/mcs7524_view_sp.test index 6e43f5086..f73895c0c 100644 --- a/mysql-test/columnstore/devregression/t/mcs7524_view_sp.test +++ b/mysql-test/columnstore/devregression/t/mcs7524_view_sp.test @@ -20,9 +20,7 @@ begin end $$ # Simple SP with 1 arg ---disable_warnings drop procedure if exists sp_simple_variable; ---enable_warnings Create Procedure sp_simple_variable(in arg_key int) begin @@ -32,6 +30,7 @@ DELIMITER ;$$ call sp_simple_select; call sp_simple_variable(2); + --disable_warnings drop procedure sp_simple_select; drop procedure sp_simple_variable;