You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-08 14:22:09 +03:00
chore(codestyle): MCOL-5405: repace windows CRLF with virtious linux one
This commit is contained in:
committed by
Leonid Fedorov
parent
2e61c9909b
commit
13b23e8510
@@ -1,82 +1,82 @@
|
||||
# -------------------------------------------------------------- #
|
||||
# Test case migrated from regression test suite: bug3998.sql
|
||||
#
|
||||
# Author: Daniel Lee, daniel.lee@mariadb.com
|
||||
# -------------------------------------------------------------- #
|
||||
#
|
||||
--source ../include/have_columnstore.inc
|
||||
#
|
||||
USE tpch1;
|
||||
#
|
||||
--disable_warnings
|
||||
drop table if exists bug3998a;
|
||||
drop table if exists bug3998b;
|
||||
drop table if exists bug3998c;
|
||||
drop table if exists bug3998d;
|
||||
--enable_warnings
|
||||
|
||||
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;
|
||||
|
||||
create table bug3998b (c1 int, c2 int) engine=columnstore;
|
||||
insert into bug3998b values (0,0), (1,1), (2,1), (3, 1), (null,1), (null, null);
|
||||
select * from bug3998b;
|
||||
|
||||
create table bug3998c (c1 int, c2 int) engine=columnstore;
|
||||
insert into bug3998c values (0,0), (1,1), (2,1), (3, 1), (null,1), (null, null);
|
||||
select * from bug3998c;
|
||||
|
||||
create table bug3998d (c1 int, c2 int) engine=columnstore;
|
||||
insert into bug3998d values (1,1), (2,1), (5, 1), (null,1), (null, null);
|
||||
select * from bug3998d;
|
||||
|
||||
update bug3998a left join bug3998d on bug3998a.c1 = bug3998d.c1 set bug3998a.c1=9;
|
||||
select * from bug3998a;
|
||||
|
||||
update bug3998b join bug3998d on bug3998b.c1 = bug3998d.c1 set bug3998b.c1=9;
|
||||
select * from bug3998b;
|
||||
|
||||
update bug3998c right join bug3998d on bug3998c.c1 = bug3998d.c1 set bug3998c.c1=9;
|
||||
select * from bug3998c;
|
||||
|
||||
--disable_warnings
|
||||
drop table if exists bug3998a;
|
||||
drop table if exists bug3998b;
|
||||
drop table if exists bug3998c;
|
||||
drop table if exists bug3998d;
|
||||
--enable_warnings
|
||||
|
||||
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;
|
||||
|
||||
create table bug3998b (c1 int, c2 int) engine=columnstore;
|
||||
insert into bug3998b values (0,0), (1,1), (2,1), (3, 1), (null,1), (null, null);
|
||||
select * from bug3998b;
|
||||
|
||||
create table bug3998c (c1 int, c2 int) engine=columnstore;
|
||||
insert into bug3998c values (0,0), (1,1), (2,1), (3, 1), (null,1), (null, null);
|
||||
select * from bug3998c;
|
||||
|
||||
create table bug3998d (c1 int, c2 int) engine=columnstore;
|
||||
insert into bug3998d values (1,1), (2,1), (5, 1), (null,1), (null, null);
|
||||
select * from bug3998d;
|
||||
|
||||
delete a from bug3998a a left join bug3998d d on a.c1 = d.c1;
|
||||
select * from bug3998a;
|
||||
|
||||
delete b from bug3998b b join bug3998d d on b.c1 = d.c1;
|
||||
select * from bug3998b;
|
||||
|
||||
delete c from bug3998c c right join bug3998d d on c.c1 = d.c1;
|
||||
select * from bug3998c;
|
||||
|
||||
--disable_warnings
|
||||
drop table if exists bug3998a;
|
||||
drop table if exists bug3998b;
|
||||
drop table if exists bug3998c;
|
||||
drop table if exists bug3998d;
|
||||
--enable_warnings
|
||||
#
|
||||
|
||||
# -------------------------------------------------------------- #
|
||||
# Test case migrated from regression test suite: bug3998.sql
|
||||
#
|
||||
# Author: Daniel Lee, daniel.lee@mariadb.com
|
||||
# -------------------------------------------------------------- #
|
||||
#
|
||||
--source ../include/have_columnstore.inc
|
||||
#
|
||||
USE tpch1;
|
||||
#
|
||||
--disable_warnings
|
||||
drop table if exists bug3998a;
|
||||
drop table if exists bug3998b;
|
||||
drop table if exists bug3998c;
|
||||
drop table if exists bug3998d;
|
||||
--enable_warnings
|
||||
|
||||
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;
|
||||
|
||||
create table bug3998b (c1 int, c2 int) engine=columnstore;
|
||||
insert into bug3998b values (0,0), (1,1), (2,1), (3, 1), (null,1), (null, null);
|
||||
select * from bug3998b;
|
||||
|
||||
create table bug3998c (c1 int, c2 int) engine=columnstore;
|
||||
insert into bug3998c values (0,0), (1,1), (2,1), (3, 1), (null,1), (null, null);
|
||||
select * from bug3998c;
|
||||
|
||||
create table bug3998d (c1 int, c2 int) engine=columnstore;
|
||||
insert into bug3998d values (1,1), (2,1), (5, 1), (null,1), (null, null);
|
||||
select * from bug3998d;
|
||||
|
||||
update bug3998a left join bug3998d on bug3998a.c1 = bug3998d.c1 set bug3998a.c1=9;
|
||||
select * from bug3998a;
|
||||
|
||||
update bug3998b join bug3998d on bug3998b.c1 = bug3998d.c1 set bug3998b.c1=9;
|
||||
select * from bug3998b;
|
||||
|
||||
update bug3998c right join bug3998d on bug3998c.c1 = bug3998d.c1 set bug3998c.c1=9;
|
||||
select * from bug3998c;
|
||||
|
||||
--disable_warnings
|
||||
drop table if exists bug3998a;
|
||||
drop table if exists bug3998b;
|
||||
drop table if exists bug3998c;
|
||||
drop table if exists bug3998d;
|
||||
--enable_warnings
|
||||
|
||||
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;
|
||||
|
||||
create table bug3998b (c1 int, c2 int) engine=columnstore;
|
||||
insert into bug3998b values (0,0), (1,1), (2,1), (3, 1), (null,1), (null, null);
|
||||
select * from bug3998b;
|
||||
|
||||
create table bug3998c (c1 int, c2 int) engine=columnstore;
|
||||
insert into bug3998c values (0,0), (1,1), (2,1), (3, 1), (null,1), (null, null);
|
||||
select * from bug3998c;
|
||||
|
||||
create table bug3998d (c1 int, c2 int) engine=columnstore;
|
||||
insert into bug3998d values (1,1), (2,1), (5, 1), (null,1), (null, null);
|
||||
select * from bug3998d;
|
||||
|
||||
delete a from bug3998a a left join bug3998d d on a.c1 = d.c1;
|
||||
select * from bug3998a;
|
||||
|
||||
delete b from bug3998b b join bug3998d d on b.c1 = d.c1;
|
||||
select * from bug3998b;
|
||||
|
||||
delete c from bug3998c c right join bug3998d d on c.c1 = d.c1;
|
||||
select * from bug3998c;
|
||||
|
||||
--disable_warnings
|
||||
drop table if exists bug3998a;
|
||||
drop table if exists bug3998b;
|
||||
drop table if exists bug3998c;
|
||||
drop table if exists bug3998d;
|
||||
--enable_warnings
|
||||
#
|
||||
|
||||
|
Reference in New Issue
Block a user