functions.sql: Set NO SQL characteristic for function unix_timestamp_ms

This commit is contained in:
Johannes Meyer 2020-02-17 14:57:35 +01:00
parent 600154657f
commit 2ddfd8450e

View file

@ -4,4 +4,5 @@ DROP FUNCTION IF EXISTS unix_timestamp_ms;
CREATE FUNCTION unix_timestamp_ms()
RETURNS BIGINT UNSIGNED
NO SQL
RETURN FLOOR((UNIX_TIMESTAMP(NOW(3)) * 1000));