1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

MDEV-431: Cassandra storage engine

- Support "DELETE FROM cassandra_table"
This commit is contained in:
Sergey Petrunya
2012-08-18 21:29:31 +04:00
parent ab28174122
commit 9cdf5eeec9
5 changed files with 44 additions and 8 deletions

View File

@ -22,4 +22,7 @@ select * from t1;
rowkey data1 data2
data1-value 123456
data1-value2 34543
delete from t1;
select * from t1;
rowkey data1 data2
drop table t1;

View File

@ -55,6 +55,11 @@ create table t1 (rowkey char(36) primary key, data1 varchar(60), data2 bigint) e
insert into t1 values ('rowkey10', 'data1-value', 123456);
insert into t1 values ('rowkey11', 'data1-value2', 34543);
select * from t1;
# Check if deletion works
delete from t1;
select * from t1;
drop table t1;
############################################################################