# -------------------------------------------------------------- # # Test case migrated from regression test suite: bug3007.sql # # Author: Daniel Lee, daniel.lee@mariadb.com # -------------------------------------------------------------- # # --source ../include/have_columnstore.inc # USE tpch1; # --disable_warnings create database if not exists bug3007; drop table if exists bug3007.bug; --enable_warnings create table bug3007.bug(c1 int)engine=columnstore; insert into bug3007.bug values (1), (2); select * from bug3007.bug; update bug3007.bug set c1=99; delete from bug3007.bug; --disable_warnings drop table if exists bug3007.bug; drop database if exists bug3007; --enable_warnings #