salix/db/routines/util/functions/VN_UNIX_TIMESTAMP.sql

12 lines
247 B
SQL

DELIMITER $$
CREATE OR REPLACE DEFINER=`root`@`localhost` FUNCTION `util`.`VN_UNIX_TIMESTAMP`()
RETURNS int(11)
DETERMINISTIC
BEGIN
/**
* @return The mock time in unix timestamp format
*/
RETURN UNIX_TIMESTAMP(mocktime());
END$$
DELIMITER ;