summaryrefslogtreecommitdiffstats
path: root/yql/essentials/udfs/common
diff options
context:
space:
mode:
authorvvvv <[email protected]>2025-03-10 16:11:40 +0300
committervvvv <[email protected]>2025-03-10 16:32:16 +0300
commit150da77343479ec4bf75bf413f06a3c1763dfd4c (patch)
treeb6121e426436ba169287f61f83574d1644dc09ca /yql/essentials/udfs/common
parent0bc4dde3ddea6f5e443af642defbb3b2867f78c2 (diff)
YQL-19212 more fixes to translator for case insensitive udf names
commit_hash:b73ddecc5bdf4eb52cb62f9ba551c72e2d2d3e73
Diffstat (limited to 'yql/essentials/udfs/common')
-rw-r--r--yql/essentials/udfs/common/yson2/test/canondata/test.test_IgnoreCaseFuncs_/results.txt10
-rw-r--r--yql/essentials/udfs/common/yson2/test/cases/IgnoreCaseFuncs.sql4
2 files changed, 12 insertions, 2 deletions
diff --git a/yql/essentials/udfs/common/yson2/test/canondata/test.test_IgnoreCaseFuncs_/results.txt b/yql/essentials/udfs/common/yson2/test/canondata/test.test_IgnoreCaseFuncs_/results.txt
index b6d6e7d1db1..e40e5463758 100644
--- a/yql/essentials/udfs/common/yson2/test/canondata/test.test_IgnoreCaseFuncs_/results.txt
+++ b/yql/essentials/udfs/common/yson2/test/canondata/test.test_IgnoreCaseFuncs_/results.txt
@@ -40,6 +40,13 @@
"Uint64"
]
]
+ ];
+ [
+ "column4";
+ [
+ "DataType";
+ "Int32"
+ ]
]
]
]
@@ -56,7 +63,8 @@
};
[
"3"
- ]
+ ];
+ "1"
]
]
}
diff --git a/yql/essentials/udfs/common/yson2/test/cases/IgnoreCaseFuncs.sql b/yql/essentials/udfs/common/yson2/test/cases/IgnoreCaseFuncs.sql
index d57d650984e..ab4f9c740b1 100644
--- a/yql/essentials/udfs/common/yson2/test/cases/IgnoreCaseFuncs.sql
+++ b/yql/essentials/udfs/common/yson2/test/cases/IgnoreCaseFuncs.sql
@@ -1,3 +1,5 @@
pragma config.flags("UdfIgnoreCase");
select
- YSON::PARSE('[]'),yson::parse('{}'y),yson::from(1),yson::getlength('[1;2;3]'y);
+ YSON::PARSE('[]'),yson::parse('{}'y),yson::from(1),yson::getlength('[1;2;3]'y),
+ yson::convertto("1"y,Int32);
+