diff options
Diffstat (limited to 'test/dialect/mysql.py')
-rw-r--r-- | test/dialect/mysql.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/dialect/mysql.py b/test/dialect/mysql.py index 5a03ffa98..641139167 100644 --- a/test/dialect/mysql.py +++ b/test/dialect/mysql.py @@ -864,6 +864,9 @@ class SQLTest(TestBase, AssertsCompiledSQL): "UPDATE t SET col1=%s WHERE t.col2 = %s LIMIT 1" ) + def test_utc_timestamp(self): + self.assert_compile(func.utc_timestamp(), "UTC_TIMESTAMP") + def test_cast(self): t = sql.table('t', sql.column('col')) m = mysql |