Skip to content

Commit 2495fee

Browse files
committed
fix
1 parent f8a5d3a commit 2495fee

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ydb/apps/pgwire/pg_ydb_connection.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ class TPgYdbConnection : public TActorBootstrapped<TPgYdbConnection> {
127127
}
128128

129129
{
130-
TResultSetParser parser(std::move(resultSet));
130+
NYdb::TResultSetParser parser(std::move(resultSet));
131131
while (parser.TryNextRow()) {
132132
response->DataRows.emplace_back();
133133
auto& row = response->DataRows.back();
@@ -387,7 +387,7 @@ class TPgYdbConnection : public TActorBootstrapped<TPgYdbConnection> {
387387

388388
{
389389
auto maxRows = ev->Get()->Message->GetExecuteData().MaxRows;
390-
TResultSetParser parser(std::move(resultSet));
390+
NYdb::TResultSetParser parser(std::move(resultSet));
391391
while (parser.TryNextRow()) {
392392
response->DataRows.emplace_back();
393393
auto& row = response->DataRows.back();

0 commit comments

Comments
 (0)