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

Giorgi / DuckDB.NET / 21786556530

07 Feb 2026 08:39PM UTC coverage: 89.155% (-0.07%) from 89.223%
21786556530

push

github

Giorgi
Added support for clearing in-progress adapter

Requires DuckDB 1.5

1199 of 1393 branches covered (86.07%)

Branch coverage included in aggregate %.

6 of 8 new or added lines in 1 file covered. (75.0%)

193 existing lines in 43 files now uncovered.

2336 of 2572 relevant lines covered (90.82%)

557295.56 hits per line

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

72.73
/DuckDB.NET.Bindings/SafeUnmanagedMemoryHandle.cs
1
namespace DuckDB.NET.Native;
2

3
public class SafeUnmanagedMemoryHandle : SafeHandleZeroOrMinusOneIsInvalid
4
{
UNCOV
5
    public SafeUnmanagedMemoryHandle() : base(true) { }
×
6

7
    public SafeUnmanagedMemoryHandle(IntPtr preexistingHandle) : base(true)
1,056,090✔
8
    {
9
        SetHandle(preexistingHandle);
1,056,090✔
10
    }
1,056,090✔
11

12
    protected override bool ReleaseHandle()
13
    {
14
        if (handle != IntPtr.Zero)
1,055,486!
15
        {
16
            Marshal.FreeCoTaskMem(handle);
1,055,486✔
17

18
            handle = IntPtr.Zero;
1,055,486✔
19

20
            return true;
1,055,486✔
21
        }
22

UNCOV
23
        return false;
×
24
    }
25
}
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