summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorudovichenko-r <[email protected]>2023-08-23 08:41:33 +0300
committerudovichenko-r <[email protected]>2023-08-23 09:00:58 +0300
commit1151f7d11e324aa042ce7df12a453cbfd60ddd0c (patch)
tree54a6d234e4d9d5a9c3a5ea4823f7919e4f31c1d6
parenteeac38535bea2c330e178cfbe3fab94172aeaeca (diff)
[yt provider] Fix anonymous table name in plan
YQL-16033
-rw-r--r--ydb/library/yql/providers/yt/provider/yql_yt_provider_impl.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ydb/library/yql/providers/yt/provider/yql_yt_provider_impl.cpp b/ydb/library/yql/providers/yt/provider/yql_yt_provider_impl.cpp
index 0dc50686b7e..fb34a86c767 100644
--- a/ydb/library/yql/providers/yt/provider/yql_yt_provider_impl.cpp
+++ b/ydb/library/yql/providers/yt/provider/yql_yt_provider_impl.cpp
@@ -70,7 +70,7 @@ TString MakeTableDisplayName(NNodes::TExprBase table, bool isOutput) {
auto ytTable = table.Cast<TYtTable>();
name << ytTable.Cluster().Value() << ".";
if (NYql::HasSetting(ytTable.Settings().Ref(), EYtSettingType::Anonymous)) {
- name << '@' << ytTable.Name().Value();
+ name << ytTable.Name().Value();
}
else {
name << '`' << ytTable.Name().Value() << '`';