aboutsummaryrefslogtreecommitdiffstats
path: root/ydb/core/scheme/scheme_tablecell.cpp
diff options
context:
space:
mode:
authorVlad Yaroslavlev <vladon@vladon.com>2022-02-10 16:46:25 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:46:25 +0300
commit344ea37b4a345701ab0e67de2266a1c1bd7baf2d (patch)
tree1a2c5ffcf89eb53ecd79dbc9bc0a195c27404d0c /ydb/core/scheme/scheme_tablecell.cpp
parent706b83ed7de5a473436620367af31fc0ceecde07 (diff)
downloadydb-344ea37b4a345701ab0e67de2266a1c1bd7baf2d.tar.gz
Restoring authorship annotation for Vlad Yaroslavlev <vladon@vladon.com>. Commit 2 of 2.
Diffstat (limited to 'ydb/core/scheme/scheme_tablecell.cpp')
-rw-r--r--ydb/core/scheme/scheme_tablecell.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/ydb/core/scheme/scheme_tablecell.cpp b/ydb/core/scheme/scheme_tablecell.cpp
index 98673959a7..c9ffaccc8e 100644
--- a/ydb/core/scheme/scheme_tablecell.cpp
+++ b/ydb/core/scheme/scheme_tablecell.cpp
@@ -66,7 +66,7 @@ TString DbgPrintCell(const TCell& r, NScheme::TTypeId typeId, const NScheme::TTy
if (!t.IsKnownType())
return Sprintf("Unknow typeId 0x%x", (ui32)typeId);
- TString res = t->GetName();
+ TString res = t->GetName();
res += " : ";
DbgPrintValue(res, r, typeId);
@@ -112,8 +112,8 @@ void DbgPrintValue(TString &res, const TCell &r, ui32 type) {
}
}
-TString DbgPrintTuple(const TDbTupleRef& row, const NScheme::TTypeRegistry& typeRegistry) {
- TString res = "(";
+TString DbgPrintTuple(const TDbTupleRef& row, const NScheme::TTypeRegistry& typeRegistry) {
+ TString res = "(";
for (ui32 i = 0; i < row.ColumnCount; ++i) {
res += DbgPrintCell(row.Columns[i], row.Types[i], typeRegistry);
if (i < row.ColumnCount-1)