apache / apache/iotdb-client-csharp

Unexpected behavior of the CurrentBatchRowCount() method

オープン
#53 コメント 1 件 リアクション 0 件 担当者 0 名 GitHub で見る
主要言語
C#
スター
24
フォーク
6
PR マージ指標
30日以内にマージされた PR はありません

説明

In version 2.0.8 of the library, this method always returns 0, even though the dataset contains records. In earlier versions of the library, the RowCount property worked correctly and returned the actual number of records.

Code example:

```csharp
var count = dataset.CurrentBatchRowCount();
// variable count always contains 0

var list = new List(count);
while (await dataset.HasNextAsync())
{
var row = dataset.Next();
list.Add(new DataItem(row, false));
}
```

コントリビューションガイド

このリポジトリのコントリビューションガイドは索引されていません

評価

この issue はまだ評価されていません。

新しい issue をメールで受け取る

初心者向けの GitHub issue を短くまとめたダイジェスト。