diff options
author | tsmith@quadxeon.mysql.com <> | 2007-03-22 01:04:39 +0100 |
---|---|---|
committer | tsmith@quadxeon.mysql.com <> | 2007-03-22 01:04:39 +0100 |
commit | 54e7bc8daa1ce13968bd38888dbcc9187f359d91 (patch) | |
tree | 34885ae893c0a3acb95069f2687f5e289554a05c /mysql-test/r/help.result | |
parent | 762eae0bf166fa52184eb5884cc765314e318b8b (diff) | |
parent | f017117d84c7e05e89b27fc6a4ae3561dec23ad1 (diff) | |
download | mariadb-git-54e7bc8daa1ce13968bd38888dbcc9187f359d91.tar.gz |
Merge tsmith@bk-internal.mysql.com:/home/bk/mysql-5.1
into quadxeon.mysql.com:/benchmarks/ext3/TOSAVE/tsmith/bk/maint/51
Diffstat (limited to 'mysql-test/r/help.result')
-rw-r--r-- | mysql-test/r/help.result | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/mysql-test/r/help.result b/mysql-test/r/help.result index de8ed249528..16719cc8193 100644 --- a/mysql-test/r/help.result +++ b/mysql-test/r/help.result @@ -257,3 +257,12 @@ delete from mysql.help_relation where help_keyword_id=@keyword1_id and help_topi delete from mysql.help_relation where help_keyword_id=@keyword2_id and help_topic_id=@topic1_id; delete from mysql.help_relation where help_keyword_id=@keyword3_id and help_topic_id=@topic3_id; delete from mysql.help_relation where help_keyword_id=@keyword3_id and help_topic_id=@topic4_id; +End of 4.1 tests. +DROP TABLE IF EXISTS t1; +CREATE TABLE t1 (i INT); +LOCK TABLES t1 WRITE; +HELP no_such_topic; +name is_it_category +UNLOCK TABLES; +DROP TABLE t1; +End of 5.1 tests. |