We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77b146b commit 4cccc9cCopy full SHA for 4cccc9c
src/Ydb.Sdk/test/Ydb.Sdk.Ado.Tests/YdbParameterTests.cs
@@ -696,7 +696,7 @@ public async Task YdbParameter_SetValue_ArrayOrList_ConvertsToYdbList(YdbDbType
696
697
Assert.Equal(3ul, count);
698
Assert.Equal(list.Count, await new YdbCommand(ydbConnection)
699
- { CommandText = $"SELECT COUNT(*) FROM `{testTable}`" }.ExecuteNonQueryAsync());
+ { CommandText = $"SELECT COUNT(*) FROM `{testTable}`" }.ExecuteScalarAsync());
700
701
await new YdbCommand(ydbConnection) { CommandText = $"DROP TABLE `{testTable}`" }.ExecuteNonQueryAsync();
702
}
0 commit comments