From cad673e213540b13a86d1e1b57651f50c41c3bae Mon Sep 17 00:00:00 2001 From: Ansgar Becker Date: Thu, 22 Sep 2022 07:24:12 +0200 Subject: [PATCH] Add missing ini entries for CURRENT_TIMESTAMP function. Closes #1666 --- out/functions-mariadb.ini | 5 +++++ out/functions-mysql.ini | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/out/functions-mariadb.ini b/out/functions-mariadb.ini index 7d603fb1..5cd6f907 100644 --- a/out/functions-mariadb.ini +++ b/out/functions-mariadb.ini @@ -250,6 +250,11 @@ name=CUME_DIST declaration=[ PARTITION BY partition_expression ] [ ORDER BY order_list ] category=Window Functions description=CUME_DIST() is a window function that returns the cumulative\ndistribution of a given row. The following formula is used\nto calculate the value:\n \n(number of rows +[CURRENT_TIMESTAMP] +name=CURRENT_TIMESTAMP +declaration= +category=Date and Time Functions +description=CURRENT_TIMESTAMP and CURRENT_TIMESTAMP() are synonyms for NOW(). [CURDATE] declaration= category=Date and Time Functions diff --git a/out/functions-mysql.ini b/out/functions-mysql.ini index 3c0ccdfd..bd91ac95 100644 --- a/out/functions-mysql.ini +++ b/out/functions-mysql.ini @@ -187,6 +187,11 @@ description=Creates a shared secret for generating a DH private/public key pair declaration=digest_type, str category=Enterprise Encryption Functions description=Creates a digest from the given string using the given digest type, and\nreturns the digest as a binary string +[CURRENT_TIMESTAMP] +name=CURRENT_TIMESTAMP +declaration= +category=Date and Time Functions +description=CURRENT_TIMESTAMP and CURRENT_TIMESTAMP() are synonyms for NOW(). [CURTIME] declaration=[fsp] category=Date and Time Functions