1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-04-21 19:45:56 +03:00

28 lines
694 B
Plaintext

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