summaryrefslogtreecommitdiff
path: root/mysql-test/r/csv.result
diff options
context:
space:
mode:
authorpetr@mysql.com <>2005-11-06 02:11:12 +0300
committerpetr@mysql.com <>2005-11-06 02:11:12 +0300
commit038b300753440a9cc24da56c2ba9ff477726243c (patch)
tree26cfc43e4f5200a600ec917cf0ceba7232e21053 /mysql-test/r/csv.result
parenta1f56ea5a6414947dc17f565e98f102248e9f286 (diff)
downloadmariadb-git-038b300753440a9cc24da56c2ba9ff477726243c.tar.gz
Fix Bug#14672 Bug in deletion
Diffstat (limited to 'mysql-test/r/csv.result')
-rw-r--r--mysql-test/r/csv.result27
1 files changed, 27 insertions, 0 deletions
diff --git a/mysql-test/r/csv.result b/mysql-test/r/csv.result
index 78a1f34636c..2e3d11ad461 100644
--- a/mysql-test/r/csv.result
+++ b/mysql-test/r/csv.result
@@ -4949,3 +4949,30 @@ val
6
6
DROP TABLE bug13894;
+DROP TABLE IF EXISTS bug14672;
+CREATE TABLE bug14672 (c1 integer) engine = CSV;
+INSERT INTO bug14672 VALUES (1), (2), (3);
+SELECT * FROM bug14672;
+c1
+1
+2
+3
+DELETE FROM bug14672 WHERE c1 = 2;
+SELECT * FROM bug14672;
+c1
+1
+3
+INSERT INTO bug14672 VALUES (4);
+SELECT * FROM bug14672;
+c1
+1
+3
+4
+INSERT INTO bug14672 VALUES (5);
+SELECT * FROM bug14672;
+c1
+1
+3
+4
+5
+DROP TABLE bug14672;