I am posting this to save another hour of hours wasted. Mysql release candidate 5.6.7-rc is undesirable. Like Dev, I usually follow as close as possible to the latest version. This caused me the debug hours of gerrit and mysql. The answer is to use a stable version. Hope this helps someone else.
Not sure about the SO protocol for doing something like this - so just submit as a question.
mysql> select VERSION(); +--------------+ | VERSION() | +--------------+ | 5.6.7-rc-log | +--------------+ 1 row in set (0.00 sec) mysql> SET OPTION SQL_SELECT_LIMIT=10; ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'OPTION SQL_SELECT_LIMIT=10' at line 1 mysql> select VERSION(); +------------+ | VERSION() | +------------+ | 5.5.28-log | +------------+ 1 row in set (0.00 sec) mysql> SET OPTION SQL_SELECT_LIMIT=10; Query OK, 0 rows affected (0.00 sec)
Adrian cornish
source share