diff options
author | jimw@mysql.com <> | 2005-08-01 17:54:57 -0700 |
---|---|---|
committer | jimw@mysql.com <> | 2005-08-01 17:54:57 -0700 |
commit | 48d111c8c2169cb08ce59431118924a12a4570d8 (patch) | |
tree | c2a4f1c838bccde279f578e1d54a016a0d377f51 /mysql-test/r/user_var.result | |
parent | 8d591d0189cde764cfa7df28040cedd94b45bce3 (diff) | |
parent | ca56883011ffd39e2c0e25bbe024e383b54bd412 (diff) | |
download | mariadb-git-48d111c8c2169cb08ce59431118924a12a4570d8.tar.gz |
Merge mysql.com:/home/jimw/my/mysql-4.1-clean
into mysql.com:/home/jimw/my/mysql-5.0-clean
Diffstat (limited to 'mysql-test/r/user_var.result')
-rw-r--r-- | mysql-test/r/user_var.result | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/mysql-test/r/user_var.result b/mysql-test/r/user_var.result index df71c97033f..893e024719b 100644 --- a/mysql-test/r/user_var.result +++ b/mysql-test/r/user_var.result @@ -224,3 +224,27 @@ t1 CREATE TABLE `t1` ( `@first_var` longtext ) ENGINE=MyISAM DEFAULT CHARSET=latin1 drop table t1; +select @@local.max_allowed_packet; +@@local.max_allowed_packet +# +select @@session.max_allowed_packet; +@@session.max_allowed_packet +# +select @@global.max_allowed_packet; +@@global.max_allowed_packet +# +select @@max_allowed_packet; +@@max_allowed_packet +# +select @@Max_Allowed_Packet; +@@Max_Allowed_Packet +# +select @@version; +@@version +# +select @@global.version; +@@global.version +# +select @@session.VERSION; +@@session.VERSION +# |