diff options
author | monty@hundin.mysql.fi <> | 2002-11-07 04:02:37 +0200 |
---|---|---|
committer | monty@hundin.mysql.fi <> | 2002-11-07 04:02:37 +0200 |
commit | 65badfff1a6dec4de5bf2d29cf143c72b5dd8830 (patch) | |
tree | e27391c030124332f69b62384e7e47e39f8e1818 /mysql-test/t/variables.test | |
parent | a6e5f9217c5443fb5cedfef012517f37b4df6cf1 (diff) | |
download | mariadb-git-65badfff1a6dec4de5bf2d29cf143c72b5dd8830.tar.gz |
Put temporary files in binlog cache when using BEGIN/COMMIT
Let MySQL 4.0 read 4.1 .frm files without 4.1 specific extensions
New variables @@rand_seed1 and @@rand_seed2 (used by replication)
DROP TEMPORARY TABLE
Diffstat (limited to 'mysql-test/t/variables.test')
-rw-r--r-- | mysql-test/t/variables.test | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mysql-test/t/variables.test b/mysql-test/t/variables.test index e84a7fe404d..e21fbd975e6 100644 --- a/mysql-test/t/variables.test +++ b/mysql-test/t/variables.test @@ -93,6 +93,10 @@ set global character set default, session character set default; show variables like "convert_character_set"; select @@timestamp>0; +set @@rand_seed1=10000000,@@rand_seed2=1000000; +select ROUND(RAND(),5); + + # The following should give errors --error 1231 |