summaryrefslogtreecommitdiff
path: root/mysql-test/r/connect.result
diff options
context:
space:
mode:
authorunknown <pappa@c-4a09e253.1238-1-64736c10.cust.bredbandsbolaget.se>2005-09-08 22:47:41 -0400
committerunknown <pappa@c-4a09e253.1238-1-64736c10.cust.bredbandsbolaget.se>2005-09-08 22:47:41 -0400
commita49e23ad844724a00db975cc8145b7f0c83c3707 (patch)
tree811f4ee92480c6e0aa37c7f65d8839b78dcf4b69 /mysql-test/r/connect.result
parent5ae2ca2197a47e6853bf1d8526dbcd94b83a511a (diff)
parent91d05c5234a3c507bcb6aac4cad6968afec34114 (diff)
downloadmariadb-git-a49e23ad844724a00db975cc8145b7f0c83c3707.tar.gz
Merge mronstrom@bk-internal.mysql.com:/home/bk/mysql-4.1
into c-4a09e253.1238-1-64736c10.cust.bredbandsbolaget.se:/home/pappa/mysql-5.0 mysql-test/r/connect.result: Auto merged mysql-test/t/connect.test: Auto merged ndb/src/mgmsrv/MgmtSrvr.cpp: Auto merged sql/sql_class.cc: SCCS merged
Diffstat (limited to 'mysql-test/r/connect.result')
-rw-r--r--mysql-test/r/connect.result6
1 files changed, 6 insertions, 0 deletions
diff --git a/mysql-test/r/connect.result b/mysql-test/r/connect.result
index fef813371c8..2508d751b46 100644
--- a/mysql-test/r/connect.result
+++ b/mysql-test/r/connect.result
@@ -1,3 +1,4 @@
+drop table if exists t1,t2;
show tables;
Tables_in_mysql
columns_priv
@@ -71,3 +72,8 @@ show tables;
Tables_in_test
delete from mysql.user where user=_binary"test";
flush privileges;
+create table t1 (id integer not null auto_increment primary key);
+create temporary table t2(id integer not null auto_increment primary key);
+set @id := 1;
+delete from t1 where id like @id;
+drop table t1;