1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-30 19:23:07 +03:00
Files
Leonid Fedorov 7a2ca9d6bc MCOL-4480: TEXT type added (#3142)
* TEXT type added
* tests
2024-03-21 00:26:35 +04:00

22 lines
556 B
Plaintext

#
# Alter table add column
# Author: Bharath, bharath.bokka@mariadb.com
#
-- source include/have_innodb.inc
-- source ../include/have_columnstore.inc
--disable_warnings
DROP DATABASE IF EXISTS MCOL_5175;
--enable_warnings
CREATE DATABASE MCOL_5175;
USE MCOL_5175;
create table testtext2 ( myvalue varchar(100) )engine=Columnstore CHARSET=utf8;
show create table testtext2;
alter table testtext2 add column myvalue2 text;
show create table testtext2;
insert into testtext2 (myvalue2) VALUES ('myvalue');
select * from testtext2;
DROP DATABASE MCOL_5175;