diff options
Diffstat (limited to 'mysql-test/r/mdev375.result')
-rw-r--r-- | mysql-test/r/mdev375.result | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mysql-test/r/mdev375.result b/mysql-test/r/mdev375.result index 426336e5939..d7a66ebd6dd 100644 --- a/mysql-test/r/mdev375.result +++ b/mysql-test/r/mdev375.result @@ -1,12 +1,15 @@ SET GLOBAL log_warnings=4; SET GLOBAL max_connections=2; +connect con1,localhost,root,,; SELECT 1; 1 1 +connect con2,localhost,root,,; SELECT 2; 2 2 ERROR HY000: Too many connections +connection default; SELECT 0; 0 0 |