Custom MySQL function times wrong, [ERR] 1418-this function has none of deterministic ...

Source: Internet
Author: User

There was an error today when I executed the SQL for my custom MySQL function , sql as follows:

/**
Custom MySQL function getchildlist
*/
Delimiter//
CREATE FUNCTION ' Pengwifi_wifi '. ' Getchildlist ' (Rootid INT)
RETURNS varchar (1000)

BEGIN
DECLARE stemp VARCHAR (1000);
DECLARE stempchd VARCHAR (1000);

SET stemp = ' $ ';
SET stempchd =cast (Rootid as CHAR);

While stempchd are NOT NULL does
SET stemp = concat (stemp, ', ', stempchd);
SELECT Group_concat (ID) into Stempchd from Hui_class where Find_in_set (parent_id,stempchd) >0;
END while;
RETURN stemp;
END
//

Error message: [ERR] 1418-this function has none of the deterministic, NO SQL, or READS SQL DATA in its declaration and binary logging IS-enabled (you *might* want-use the less safe log_bin_trust_function_creators variable)

WORKAROUND:set global log_bin_trust_function_creators=true;

Custom MySQL function times wrong, [ERR] 1418-this function has none of deterministic ...

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.