File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -127,7 +127,7 @@ class TPgYdbConnection : public TActorBootstrapped<TPgYdbConnection> {
127
127
}
128
128
129
129
{
130
- TResultSetParser parser (std::move (resultSet));
130
+ NYdb:: TResultSetParser parser (std::move (resultSet));
131
131
while (parser.TryNextRow ()) {
132
132
response->DataRows .emplace_back ();
133
133
auto & row = response->DataRows .back ();
@@ -387,7 +387,7 @@ class TPgYdbConnection : public TActorBootstrapped<TPgYdbConnection> {
387
387
388
388
{
389
389
auto maxRows = ev->Get ()->Message ->GetExecuteData ().MaxRows ;
390
- TResultSetParser parser (std::move (resultSet));
390
+ NYdb:: TResultSetParser parser (std::move (resultSet));
391
391
while (parser.TryNextRow ()) {
392
392
response->DataRows .emplace_back ();
393
393
auto & row = response->DataRows .back ();
You can’t perform that action at this time.
0 commit comments