From 34ca4161e7b110a26cc352a87540968a0f672d0d Mon Sep 17 00:00:00 2001 From: Nikolay Shumkov Date: Thu, 19 Sep 2024 20:16:44 +0300 Subject: [PATCH] Initial commit --- ydb/core/local_pgwire/local_pgwire_auth_actor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ydb/core/local_pgwire/local_pgwire_auth_actor.cpp b/ydb/core/local_pgwire/local_pgwire_auth_actor.cpp index fd9d91c60e1b..896247f599b9 100644 --- a/ydb/core/local_pgwire/local_pgwire_auth_actor.cpp +++ b/ydb/core/local_pgwire/local_pgwire_auth_actor.cpp @@ -104,7 +104,7 @@ class TPgYdbAuthActor : public NActors::TActorBootstrapped { const auto& entry = navigate->ResultSet.front(); for (const auto& attr : entry.Attributes) { - if (attr.first == "folderId") FolderId = attr.second; + if (attr.first == "folder_id") FolderId = attr.second; else if (attr.first == "database_id") DatabaseId = attr.second; }