first commit
This commit is contained in:
5
test/support/sql/py_sleep.sql
Normal file
5
test/support/sql/py_sleep.sql
Normal file
@@ -0,0 +1,5 @@
|
||||
CREATE OR REPLACE FUNCTION py_sleep(t FLOAT8)
|
||||
RETURNS void AS $$
|
||||
import time
|
||||
time.sleep(t)
|
||||
$$ LANGUAGE plpythonu;
|
||||
Reference in New Issue
Block a user