# -------------------------------------------------------------- # # 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; #