diff options
author | sasha@mysql.sashanet.com <> | 2001-09-27 23:05:54 -0600 |
---|---|---|
committer | sasha@mysql.sashanet.com <> | 2001-09-27 23:05:54 -0600 |
commit | bb66c80aeba0e7ffeb4781d8570644b10479f9a6 (patch) | |
tree | 57e877bfc39c6dc5d9340ff9c84c6652d67724b0 /mysql-test/r/delete.result | |
parent | 043deed839271cf10bd3af31d2e109694952be0c (diff) | |
download | mariadb-git-bb66c80aeba0e7ffeb4781d8570644b10479f9a6.tar.gz |
client/mysqlmanagerc.c
added support for quiet
increased line buffer size
client/mysqltest.c
fixed memory leak
added query logging to result file
added error message logging to result file
added enable_query_log/disable_query_log
mysql-test/mysql-test-run.sh
converted tests to use mysqlmanager
Updated test results
Diffstat (limited to 'mysql-test/r/delete.result')
-rw-r--r-- | mysql-test/r/delete.result | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/mysql-test/r/delete.result b/mysql-test/r/delete.result new file mode 100644 index 00000000000..c2230722aa6 --- /dev/null +++ b/mysql-test/r/delete.result @@ -0,0 +1,26 @@ +drop table if exists t1; +CREATE TABLE t1 (a tinyint(3), b tinyint(5)); +INSERT INTO t1 VALUES (1,1); +INSERT LOW_PRIORITY INTO t1 VALUES (1,2); +INSERT INTO t1 VALUES (1,3); +DELETE from t1 where a=1 limit 1; +DELETE LOW_PRIORITY from t1 where a=1; +INSERT INTO t1 VALUES (1,1); +DELETE from t1; +LOCK TABLE t1 write; +INSERT INTO t1 VALUES (1,2); +DELETE from t1; +UNLOCK TABLES; +INSERT INTO t1 VALUES (1,2); +SET AUTOCOMMIT=0; +DELETE from t1; +SET AUTOCOMMIT=1; +drop table t1; +create table t1 (a bigint not null, primary key (a,a,a,a,a,a,a,a,a,a)); +insert into t1 values (2),(4),(6),(8),(10),(12),(14),(16),(18),(20),(22),(24),(26),(23); +delete from t1 where a=26; +drop table t1; +create table t1 (a bigint not null, primary key (a,a,a,a,a,a,a,a,a,a)); +insert into t1 values (2),(4),(6),(8),(10),(12),(14),(16),(18),(20),(22),(24),(26),(23),(27); +delete from t1 where a=27; +drop table t1; |