mysql.proc, wtf?

mysql> update someTable set End = Concat (dEnd,’ ‘,tEnd);
ERROR 1146 (42S02): Table ‘mysql.proc’ doesn’t exist
mysql> update someTable set End = Concat(dEnd,’ ‘,tEnd);
Query OK, 222 rows affected (0.01 sec)
Rows matched: 246  Changed: 222  Warnings: 0

I’m pretty sure this this is an issues with grant tables not being correctly upgraded, but annoying as heck…

Comments are closed.