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

Logflare / logflare / 043ea026b31ccfcd0fb3d12ae9223b90cd6a9276-PR-2676
69%
main: 71%

Build:
Build:
LAST BUILD BRANCH: amokan/add-clickhouse-config-options
DEFAULT BRANCH: main
Ran 19 Aug 2025 03:20PM UTC
Jobs 1
Files 395
Run time 1min
Badge
Embed ▾
README BADGES
x

If you need to use a raster PNG badge, change the '.svg' to '.png' in the link

Markdown

Textile

RDoc

HTML

Rst

19 Aug 2025 03:07PM UTC coverage: 69.374%. First build
043ea026b31ccfcd0fb3d12ae9223b90cd6a9276-PR-2676

Pull #2676

github

v0idpwn
fix: lql negations should consider null as not matching

When filtering for `-metadata.project:"asd"`, logs without
the `metadata.project` key wouldn't show up. This happened due
to how LQL negations got translated to SQL:

Before: `-m.project:"asd"` would become:
```sql
WHERE NOT (f1.project = 'asd')
```

If `f1.project` IS NULL, the expression returns NULL, which
filters it out of the result set.

Now we translate it to:
```sql
WHERE ((f1.project IS NULL) OR NOT (f1.project = 'asd'))
```

This properly returns logs where m.project is null.
Pull Request #2676: fix: lql negations should consider null as not matching

3 of 3 new or added lines in 1 file covered. (100.0%)

7210 of 10393 relevant lines covered (69.37%)

4106.45 hits per line

Jobs
ID Job ID Ran Files Coverage
1 043ea026b31ccfcd0fb3d12ae9223b90cd6a9276-PR-2676.1 19 Aug 2025 03:20PM UTC 395
69.37
GitHub Action Run
Source Files on build 043ea026b31ccfcd0fb3d12ae9223b90cd6a9276-PR-2676
  • Tree
  • List 395
  • Changed 0
  • Source Changed 0
  • Coverage Changed 0
Coverage ∆ File Lines Relevant Covered Missed Hits/Line
  • Back to Repo
  • Pull Request #2676
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