aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/dq/wrong_script_timeout.sql
blob: 8493ab87e8feee25e62329ac94c534cd32ad5e06 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* dqfile can not */
USE plato;

$f=Python3::f(@@
def f(x):
    """
    Callable<(Int32)->Int32>
    """
    import time
    time.sleep(60)
    return 0
@@);

select $f(0);