summaryrefslogtreecommitdiff
path: root/storage
diff options
context:
space:
mode:
authorElena Stepanova <elenst@montyprogram.com>2017-08-04 02:11:10 +0300
committerElena Stepanova <elenst@montyprogram.com>2017-08-04 02:11:10 +0300
commitd85d6c9c416aab85f1ded344a5b870d4cc56f9f6 (patch)
tree2897f314bc06e30bcf780400f8c2165ed6da4fa7 /storage
parente1aded1420d44e6f825a646df5d1aebeda8dfa64 (diff)
downloadmariadb-git-d85d6c9c416aab85f1ded344a5b870d4cc56f9f6.tar.gz
Remove extra trailing spaces from the result file
Diffstat (limited to 'storage')
-rw-r--r--storage/tokudb/mysql-test/tokudb_mariadb/r/mdev12972.result4
1 files changed, 2 insertions, 2 deletions
diff --git a/storage/tokudb/mysql-test/tokudb_mariadb/r/mdev12972.result b/storage/tokudb/mysql-test/tokudb_mariadb/r/mdev12972.result
index fce77f1647d..92aefedac69 100644
--- a/storage/tokudb/mysql-test/tokudb_mariadb/r/mdev12972.result
+++ b/storage/tokudb/mysql-test/tokudb_mariadb/r/mdev12972.result
@@ -1,10 +1,10 @@
CREATE TABLE t1 (pk INT PRIMARY KEY, i1 INT, c1 VARCHAR(1), KEY(c1)) ENGINE=TokuDB;
-INSERT INTO t1 VALUES
+INSERT INTO t1 VALUES
(1,2,NULL),(2,5,'x'),(3,3,'i'),(4,1,'e'),(5,4,'p');
CREATE TABLE t2 (i2 INT) ENGINE=TokuDB;
INSERT INTO t2 VALUES (1),(2);
CREATE TABLE t3 (i3 INT, c3 VARCHAR(1), KEY(i3)) ENGINE=TokuDB;
-INSERT INTO t3 VALUES
+INSERT INTO t3 VALUES
(1,'e'),(1,'z'),(1,'i'),(1,'q'),(1,'i'),(1,'f'),(1,'m'),(2,'c'),(1,'d'),
(2,'n'),(1,'t'),(2,'e'),(1,'w'),(2,'y'),(1,'j'),(2,'i'),(1,'f'),(2,'f'),
(1,'s'),(2,'y');