diff --git a/ydb/library/yql/parser/pg_catalog/catalog.cpp b/ydb/library/yql/parser/pg_catalog/catalog.cpp index 1ef77a326c28..14893cc2e572 100644 --- a/ydb/library/yql/parser/pg_catalog/catalog.cpp +++ b/ydb/library/yql/parser/pg_catalog/catalog.cpp @@ -1940,7 +1940,6 @@ struct TCatalog : public IExtensionDDLBuilder { } void CreateProc(const TProcDesc& desc) final { - Cerr << "CreateProc: " << desc.Name << "\n"; TProcDesc newDesc = desc; newDesc.ProcId = 16000 + Procs.size(); Procs[newDesc.ProcId] = newDesc; @@ -1948,7 +1947,6 @@ struct TCatalog : public IExtensionDDLBuilder { } void PrepareType(ui32 extensionIndex, const TString& name) final { - Cerr << "PrepareType: " << name << "\n"; Y_ENSURE(extensionIndex); Y_ENSURE(!TypeByName.contains(name)); TTypeDesc newDesc;