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

6 lines
118 B
MySQL
Raw Normal View History

2017-11-17 20:09:37 +08:00
CREATE OR REPLACE FUNCTION py_sleep(t FLOAT8)
RETURNS void AS $$
import time
time.sleep(t)
2017-11-17 20:17:42 +08:00
$$ LANGUAGE plpythonu;