summaryrefslogtreecommitdiff
path: root/mysql-test/suite/rpl/r/rpl_session_var.result
diff options
context:
space:
mode:
authorunknown <holyfoot/hf@hfmain.(none)>2007-07-27 22:43:33 +0500
committerunknown <holyfoot/hf@hfmain.(none)>2007-07-27 22:43:33 +0500
commit8feaed2ae75ea20a6f6e94aac7dd404fd2953835 (patch)
tree5b32826bab6d3dc94b70e85c621bbf3ff46e5035 /mysql-test/suite/rpl/r/rpl_session_var.result
parent54c9742922864ee711e024bb93307c553d66fb38 (diff)
parentd27bf14ed7aab39b8b83d0eed34cb3ba4417de35 (diff)
downloadmariadb-git-8feaed2ae75ea20a6f6e94aac7dd404fd2953835.tar.gz
Merge mysql.com:/home/hf/work/29878/my50-29878
into mysql.com:/home/hf/work/29878/my51-29878 mysql-test/suite/rpl/r/rpl_session_var.result: Auto merged mysql-test/suite/rpl/t/rpl_session_var.test: Auto merged sql/item.cc: Auto merged sql/item.h: Auto merged sql/item_strfunc.h: Auto merged
Diffstat (limited to 'mysql-test/suite/rpl/r/rpl_session_var.result')
-rw-r--r--mysql-test/suite/rpl/r/rpl_session_var.result10
1 files changed, 10 insertions, 0 deletions
diff --git a/mysql-test/suite/rpl/r/rpl_session_var.result b/mysql-test/suite/rpl/r/rpl_session_var.result
index b5b4b815ade..787899932d6 100644
--- a/mysql-test/suite/rpl/r/rpl_session_var.result
+++ b/mysql-test/suite/rpl/r/rpl_session_var.result
@@ -41,3 +41,13 @@ select * from t2 order by b;
b a
1 1
drop table t1,t2;
+CREATE TABLE t1 (
+`id` int(11) NOT NULL auto_increment,
+`data` varchar(100),
+PRIMARY KEY (`id`)
+) ENGINE=MyISAM;
+INSERT INTO t1(data) VALUES(SESSION_USER());
+SELECT * FROM t1;
+id data
+1
+drop table t1;