|
However, the warning happens not only on conflicting function names, but on absolutely all keywords:
CREATE OR REPLACE FUNCTION `create`() RETURNS INT RETURN 1;
|
SHOW WARNINGS;
|
+-------+------+---------------------------------------------------------------+
|
| Level | Code | Message |
|
+-------+------+---------------------------------------------------------------+
|
| Note | 1585 | This function 'create' has the same name as a native function |
|
+-------+------+---------------------------------------------------------------+
|
The above warning looks wrong.
|