1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-11-25 20:23:16 +03:00
Files
mariadb-columnstore-engine/mtr/csinternal/devregression/t/mcs7043_regression_bug3024.test
mariadb-RomanNavrotskiy 73b4147cf3 move mtr suites here
2021-01-31 01:38:31 +02:00

24 lines
662 B
Plaintext

# -------------------------------------------------------------- #
# Test case migrated from regression test suite: bug3024.sql
#
# Author: Daniel Lee, daniel.lee@mariadb.com
# -------------------------------------------------------------- #
#
--source ../include/have_columnstore.inc
#
USE tpch1;
#
select * from nation where n_nationkey=@value;
set @value=5;
select * from nation where n_nationkey=@value;
create table if not exists bug3024 (c1 int) engine=columnstore;
insert into bug3024 values (1), (2);
update bug3024 set c1=3 where c1=@value;
set @value=2;
update bug3024 set c1=3 where c1=@value;
select * from bug3024;
drop table if exists bug3024;
#