• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

Giorgi / DuckDB.NET / 28017109290

23 Jun 2026 09:41AM UTC coverage: 89.361% (-0.4%) from 89.738%
28017109290

push

github

Giorgi
Merge branch 'main' into nightly-builds

1330 of 1545 branches covered (86.08%)

Branch coverage included in aggregate %.

362 of 413 new or added lines in 32 files covered. (87.65%)

4 existing lines in 3 files now uncovered.

2769 of 3042 relevant lines covered (91.03%)

434285.19 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

73.33
/DuckDB.NET.Data/DataChunk/Reader/GuidVectorDataReader.cs
1
namespace DuckDB.NET.Data.DataChunk.Reader;
2

3
internal sealed class GuidVectorDataReader : VectorDataReaderBase
4
{
5
    internal unsafe GuidVectorDataReader(void* dataPointer, ulong* validityMaskPointer, DuckDBType columnType, string columnName) : base(dataPointer, validityMaskPointer, columnType, columnName)
219✔
6
    {
7
    }
219✔
8

9
    protected override T GetValidValue<T>(ulong offset)
10
    {
11
        if (DuckDBType != DuckDBType.Uuid)
24!
12
        {
NEW
13
            return base.GetValidValue<T>(offset);
×
14
        }
15

16
        var hugeInt = GetFieldData<DuckDBHugeInt>(offset);
24✔
17

18
        var guid = hugeInt.ConvertToGuid();
24✔
19
        return (T)(object)guid;
24✔
20
    }
21

22
    internal override object GetValue(ulong offset, Type targetType)
23
    {
24
        if (DuckDBType != DuckDBType.Uuid)
1,202,246!
25
        {
26
            return base.GetValue(offset, targetType);
×
27
        }
28

29
        var hugeInt = GetFieldData<DuckDBHugeInt>(offset);
1,202,246✔
30

31
        return hugeInt.ConvertToGuid();
1,202,246✔
32
    }
33
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc