diff options
author | unknown <tnurnberg@mysql.com/white.intern.koehntopp.de> | 2007-12-10 08:12:41 +0100 |
---|---|---|
committer | unknown <tnurnberg@mysql.com/white.intern.koehntopp.de> | 2007-12-10 08:12:41 +0100 |
commit | 1ebb563422e5650f80addc3adf08f88044b4b340 (patch) | |
tree | a2b1fc751133e0758fb6636ad87b2fbc8da6f13e /mysql-test/r/change_user.result | |
parent | 85eed9de26a1957f3911aaa5559d9dcdd493aa33 (diff) | |
download | mariadb-git-1ebb563422e5650f80addc3adf08f88044b4b340.tar.gz |
Bug #31177: Server variables can't be set to their current values
fixes for SLES10
mysql-test/r/change_user.result:
It's unsigned.
mysys/my_getopt.c:
Failsafe no longer needed, we handle signedness correctly now.
sql/set_var.cc:
ha_rows can be derived from all kinds of types, but
they're all unsigned. Display it as such.
tests/mysql_client_test.c:
cannot easily check this here due to types.
check with Alik whether we need this on top
of change_user.test.
Diffstat (limited to 'mysql-test/r/change_user.result')
-rw-r--r-- | mysql-test/r/change_user.result | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/change_user.result b/mysql-test/r/change_user.result index cb409621d56..28b55dfd5e5 100644 --- a/mysql-test/r/change_user.result +++ b/mysql-test/r/change_user.result @@ -4,14 +4,14 @@ SELECT @@session.sql_big_selects; 1 SELECT @@global.max_join_size; @@global.max_join_size --1 +18446744073709551615 change_user SELECT @@session.sql_big_selects; @@session.sql_big_selects 1 SELECT @@global.max_join_size; @@global.max_join_size --1 +18446744073709551615 SET @@global.max_join_size = 10000; SET @@session.max_join_size = default; change_user |