summaryrefslogtreecommitdiffstats
path: root/yql/essentials/udfs/common/python/python3_small/test/cases/Linear.sql
diff options
context:
space:
mode:
authorvvvv <[email protected]>2025-10-17 07:43:59 +0300
committervvvv <[email protected]>2025-10-17 08:05:07 +0300
commit18dc0d862c27f26775e7ed11b6d2d0853f2f9a77 (patch)
tree59f720bf2368478a37706d4e45a5bd8685d35210 /yql/essentials/udfs/common/python/python3_small/test/cases/Linear.sql
parent05b4c4f15355983e6342ce37e6f760a6ffe3feac (diff)
YQL-20339 composite types in grammar
commit_hash:2fc2878449f90c948e0cd75a3c1d59f07d660620
Diffstat (limited to 'yql/essentials/udfs/common/python/python3_small/test/cases/Linear.sql')
-rw-r--r--yql/essentials/udfs/common/python/python3_small/test/cases/Linear.sql5
1 files changed, 2 insertions, 3 deletions
diff --git a/yql/essentials/udfs/common/python/python3_small/test/cases/Linear.sql b/yql/essentials/udfs/common/python/python3_small/test/cases/Linear.sql
index ef4aa9f0132..0f1ebaf2989 100644
--- a/yql/essentials/udfs/common/python/python3_small/test/cases/Linear.sql
+++ b/yql/essentials/udfs/common/python/python3_small/test/cases/Linear.sql
@@ -6,9 +6,8 @@ def g(x):
return x * 2
@@;
-$l = LinearType(Int32);
-$p = Python::f(Callable<(Int32)->$l>, $s);
-$c = Python::g(Callable<($l)->Int32>, $s);
+$p = Python::f(Callable<(Int32)->Linear<Int32>>, $s);
+$c = Python::g(Callable<(Linear<Int32>)->Int32>, $s);
select $c($p(1));