diff options
author | unknown <ramil@mysql.com> | 2005-08-31 10:25:00 +0500 |
---|---|---|
committer | unknown <ramil@mysql.com> | 2005-08-31 10:25:00 +0500 |
commit | c00dd12c284bdd14d6aa469b0f5aab4e0205f486 (patch) | |
tree | 362fedc1c7bc244cd193620869e0a203d37434e8 /mysql-test/t/variables.test | |
parent | 44327dc4685f5c1c15d5553f975b53ea52be89df (diff) | |
parent | 2599491a6784458c54c561f9629ec45112767773 (diff) | |
download | mariadb-git-c00dd12c284bdd14d6aa469b0f5aab4e0205f486.tar.gz |
Merge mysql.com:/usr/home/ram/work/4.1.b9613
into mysql.com:/usr/home/ram/work/mysql-5.0
sql/ha_blackhole.cc:
Auto merged
sql/mysqld.cc:
Auto merged
sql/set_var.cc:
Auto merged
mysql-test/r/variables.result:
merging
mysql-test/t/variables.test:
merging
Diffstat (limited to 'mysql-test/t/variables.test')
-rw-r--r-- | mysql-test/t/variables.test | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/mysql-test/t/variables.test b/mysql-test/t/variables.test index 9d68b7c8172..7ce2cf22db0 100644 --- a/mysql-test/t/variables.test +++ b/mysql-test/t/variables.test @@ -395,6 +395,7 @@ SET GLOBAL table_cache=DEFAULT; # # Bug#6282 Packet error with SELECT INTO # + create table t1 (a int); select a into @x from t1; show warnings; @@ -412,9 +413,17 @@ set @@global.error_count=1; # # Bug #10351: Setting ulong variable to > MAX_ULONG fails on 32-bit platform # + set @@max_heap_table_size= 4294967296; select @@max_heap_table_size > 0; set global max_heap_table_size= 4294967296; select @@max_heap_table_size > 0; set @@max_heap_table_size= 4294967296; select @@max_heap_table_size > 0; + +# +# Bug #9613: @@have_innodb +# + +--replace_column 1 # +select @@have_innodb; |