diff options
author | udovichenko-r <rvu@ydb.tech> | 2023-06-30 20:48:11 +0300 |
---|---|---|
committer | udovichenko-r <rvu@ydb.tech> | 2023-06-30 20:48:11 +0300 |
commit | 93f97a1444777f80e3056d0566a4d1054f597b73 (patch) | |
tree | 963a527d0ed406dcc54451273b1471b5a09eef50 | |
parent | 36f2687eb7163b6e23469896f7f19a2b958fa984 (diff) | |
download | ydb-93f97a1444777f80e3056d0566a4d1054f597b73.tar.gz |
[yql] Clear UdfTypeCache on fallback
YQL-16152
-rw-r--r-- | ydb/library/yql/core/yql_type_annotation.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ydb/library/yql/core/yql_type_annotation.cpp b/ydb/library/yql/core/yql_type_annotation.cpp index 275813e7bf5..f1aab34bfb4 100644 --- a/ydb/library/yql/core/yql_type_annotation.cpp +++ b/ydb/library/yql/core/yql_type_annotation.cpp @@ -50,6 +50,7 @@ bool TTypeAnnotationContext::DoInitialize(TExprContext& ctx) { void TTypeAnnotationContext::Reset() { UdfImports.clear(); UdfModules.clear(); + UdfTypeCache.clear(); NodeToOperationId.clear(); EvaluationInProgress = 0; ExpectedTypes.clear(); |