show variables
でみるとデフォルト値と変わっていないのだが
@@GLOBAL.wait_timeout
のほうは設定値が反映されている。
mysql> show variables like 'wait_timeout';
+---------------+-------+
| Variable_name | Value |
+---------------+-------+
| wait_timeout | 28800 |
+---------------+-------+
1 row in set (0.00 sec)
mysql> SELECT @@GLOBAL.wait_timeout;
+-----------------------+
| @@GLOBAL.wait_timeout |
+-----------------------+
| 600 |
+-----------------------+
1 row in set (0.00 sec)
どっちが正しいのだろうか?謎。
0 件のコメント:
コメントを投稿