CartoDB-SQL-API/test/support/sql/py_sleep.sql

6 lines
118 B
MySQL
Raw Normal View History

2023-05-19 00:42:48 +08:00
CREATE OR REPLACE FUNCTION py_sleep(t FLOAT8)
RETURNS void AS $$
import time
time.sleep(t)
$$ LANGUAGE plpythonu;