• 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

66.67
/DuckDB.NET.Data/Connection/FileReference.cs
1
using System.IO;
2

3
namespace DuckDB.NET.Data.Connection;
4

5
/// <summary>
6
/// Holds the connection count and DuckDBDatabase structure for a FileName
7
/// </summary>
8
internal class FileReference(string filename)
46,615✔
9
{
10
    public DuckDBDatabase? Database { get; internal set; }
284,673✔
11

12
    public string FileName { get; } = filename;
149,595✔
13

14
    public long ConnectionCount { get; private set; } //don't need a long, but it is slightly faster on 64 bit systems
259,740✔
15

16
    public long Decrement()
17
    {
18
        return --ConnectionCount;
64,932✔
19
    }
20

21
    public long Increment()
22
    {
23
        return ++ConnectionCount;
64,938✔
24
    }
25

UNCOV
26
    public override string ToString() => $"{Path.GetFileName(FileName)}";
×
27
}
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