summaryrefslogtreecommitdiff
path: root/storage/tokudb/mysql-test/tokudb_bugs/r/ft-index-40.result
diff options
context:
space:
mode:
Diffstat (limited to 'storage/tokudb/mysql-test/tokudb_bugs/r/ft-index-40.result')
-rw-r--r--storage/tokudb/mysql-test/tokudb_bugs/r/ft-index-40.result22
1 files changed, 22 insertions, 0 deletions
diff --git a/storage/tokudb/mysql-test/tokudb_bugs/r/ft-index-40.result b/storage/tokudb/mysql-test/tokudb_bugs/r/ft-index-40.result
new file mode 100644
index 00000000000..d4b2e44af3b
--- /dev/null
+++ b/storage/tokudb/mysql-test/tokudb_bugs/r/ft-index-40.result
@@ -0,0 +1,22 @@
+drop table if exists t;
+create table t (a varchar(50), primary key(a)) engine='tokudb';
+insert into t values ("hello world");
+select * from t;
+a
+hello world
+begin;
+select * from t;
+a
+hello world
+update t set a="HELLO WORLD";
+select * from t;
+a
+hello world
+select * from t;
+a
+HELLO WORLD
+rollback;
+select * from t;
+a
+hello world
+drop table t;