Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
vitstn committed Jul 26, 2024
1 parent 62aebc6 commit 8f40c94
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions ydb/library/yql/parser/pg_catalog/catalog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1940,15 +1940,13 @@ 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;
ProcByName[newDesc.Name].push_back(newDesc.ProcId);
}

void PrepareType(ui32 extensionIndex, const TString& name) final {
Cerr << "PrepareType: " << name << "\n";
Y_ENSURE(extensionIndex);
Y_ENSURE(!TypeByName.contains(name));
TTypeDesc newDesc;
Expand Down

0 comments on commit 8f40c94

Please sign in to comment.