summaryrefslogtreecommitdiff
path: root/storage/tokudb/mysql-test/tokudb/t/fast_update_int_bounds.test
diff options
context:
space:
mode:
authorMarko Mäkelä <marko.makela@mariadb.com>2020-05-14 10:11:47 +0300
committerMarko Mäkelä <marko.makela@mariadb.com>2020-05-14 10:11:47 +0300
commit79241584962560567a353f53e92413398d38c971 (patch)
tree04ab7fceccc90b430de8c72a9969cde9920cebc2 /storage/tokudb/mysql-test/tokudb/t/fast_update_int_bounds.test
parent3b251e24b6c8fe81bc5eeca086d9c1e57e6739d2 (diff)
downloadmariadb-git-79241584962560567a353f53e92413398d38c971.tar.gz
MDEV-19780 Remove the TokuDB storage engine
The TokuDB storage engine has been deprecated by upstream Percona Server 8.0 in favor of MyRocks and will not be available in subsequent major upstream releases. Let us remove it from MariaDB Server as well. MyRocks is actively maintained, and it can be used instead.
Diffstat (limited to 'storage/tokudb/mysql-test/tokudb/t/fast_update_int_bounds.test')
-rw-r--r--storage/tokudb/mysql-test/tokudb/t/fast_update_int_bounds.test82
1 files changed, 0 insertions, 82 deletions
diff --git a/storage/tokudb/mysql-test/tokudb/t/fast_update_int_bounds.test b/storage/tokudb/mysql-test/tokudb/t/fast_update_int_bounds.test
deleted file mode 100644
index cefeb1ff1f5..00000000000
--- a/storage/tokudb/mysql-test/tokudb/t/fast_update_int_bounds.test
+++ /dev/null
@@ -1,82 +0,0 @@
-source include/have_tokudb.inc;
-source include/have_innodb.inc;
-
-create table tt (id int primary key, x int) engine = tokudb;
-insert into tt values (1,0),(2,-pow(2,31)),(3,pow(2,31)-1);
-create table ti like tt;
-alter table ti engine=innodb;
-insert into ti select * from tt;
-
-set tokudb_enable_fast_update=1;
-source ../include/setup_fast_update_upsert.inc;
-
-update tt set x=x+1 where id=1;
-update ti set x=x+1 where id=1;
-let $diff_tables = test.tt, test.ti;
-source include/diff_tables.inc;
-
-update tt set x=x-2 where id=1;
-update ti set x=x-2 where id=1;
-let $diff_tables = test.tt, test.ti;
-source include/diff_tables.inc;
-
-update tt set x=x+1 where id=1;
-update ti set x=x+1 where id=1;
-let $diff_tables = test.tt, test.ti;
-source include/diff_tables.inc;
-
-update tt set x=x-1 where id=2;
-update ti set x=x-1 where id=2;
-let $diff_tables = test.tt, test.ti;
-source include/diff_tables.inc;
-
-update tt set x=x+1 where id=2;
-update ti set x=x+1 where id=2;
-let $diff_tables = test.tt, test.ti;
-source include/diff_tables.inc;
-
-update tt set x=x+1 where id=3;
-update ti set x=x+1 where id=3;
-let $diff_tables = test.tt, test.ti;
-source include/diff_tables.inc;
-
-update tt set x=x-1 where id=3;
-update ti set x=x-1 where id=3;
-let $diff_tables = test.tt, test.ti;
-source include/diff_tables.inc;
-
-# test clip at maximum
-insert into tt values (4,pow(2,31)-10);
-insert into ti values (4,pow(2,31)-10);
-update tt set x=x+20 where id=4;
-update ti set x=x+20 where id=4;
-let $diff_tables = test.tt, test.ti;
-source include/diff_tables.inc;
-
-insert into tt values (5,pow(2,31)-10);
-insert into ti values (5,pow(2,31)-10);
-update tt set x=x - -20 where id=5;
-update ti set x=x - -20 where id=5;
-let $diff_tables = test.tt, test.ti;
-source include/diff_tables.inc;
-
-# test clip at minimum
-insert into tt values (6,-pow(2,31)+10);
-insert into ti values (6,-pow(2,31)+10);
-update tt set x=x-20 where id=6;
-update ti set x=x-20 where id=6;
-let $diff_tables = test.tt, test.ti;
-source include/diff_tables.inc;
-
-insert into tt values (7,-pow(2,31)+10);
-insert into ti values (7,-pow(2,31)+10);
-update tt set x=x + -20 where id=7;
-update ti set x=x + -20 where id=7;
-let $diff_tables = test.tt, test.ti;
-source include/diff_tables.inc;
-
-
-drop table tt, ti;
-
-
-