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

codenotary / immudb
85%

Build:
DEFAULT BRANCH: master
Repo Added 30 May 2020 08:52AM UTC
Files 311
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

LAST BUILD ON BRANCH master
branch: SELECT
CHANGE BRANCH
x
  • No branch selected
  • chore/build-updates
  • chore/test-followups
  • ci-regex-fix
  • docker-init-db
  • fargate
  • feat/auditlog
  • feat/coalesce
  • feat/s3performance
  • feature/between-and
  • feature/constant-selection-query
  • feature/discard-precommitted-txs
  • feature/extract-from-timestamp
  • feature/individual-col-primary-key
  • feature/left-join
  • feature/pgsql-catalog
  • fix/2082-scan-latest
  • fix/cas-notarize
  • fix/display-actual-config-path-on-startup
  • fix/empty-tree-flush
  • fix/empty-tree-flush-file
  • fix/index_metrix
  • gh_action_update
  • issue-2028
  • master
  • moshix-patch-8
  • parallelvcn
  • patch-1
  • refs/tags/v1.1.0
  • refs/tags/v1.10.0
  • refs/tags/v1.11.0
  • refs/tags/v1.11.0-RC2
  • refs/tags/v1.2.0
  • refs/tags/v1.2.0-RC1
  • refs/tags/v1.2.1
  • refs/tags/v1.2.2
  • refs/tags/v1.2.3
  • refs/tags/v1.2.3-RC1
  • refs/tags/v1.2.4
  • refs/tags/v1.2.4-RC1
  • refs/tags/v1.3.0
  • refs/tags/v1.3.0-RC1
  • refs/tags/v1.3.1
  • refs/tags/v1.3.2
  • refs/tags/v1.3.2-RC1
  • refs/tags/v1.4.0
  • refs/tags/v1.4.0-RC1
  • refs/tags/v1.4.0-RC2
  • refs/tags/v1.4.1
  • refs/tags/v1.4.1-RC1
  • refs/tags/v1.5.0
  • refs/tags/v1.5.0-RC1
  • refs/tags/v1.9.0-RC1
  • refs/tags/v1.9.0-RC2
  • refs/tags/v1.9.3
  • refs/tags/v1.9.4
  • refs/tags/v1.9.5
  • refs/tags/v1.9.6
  • refs/tags/v1.9.7
  • refs/tags/v1.9DOM
  • refs/tags/v1.9DOM.0
  • refs/tags/v1.9DOM.1
  • refs/tags/v1.9DOM.1-RC1
  • refs/tags/v1.9DOM.2
  • refs/tags/v1.9DOM.2-RC1
  • refs/tags/v2.0.0-RC1
  • release/v1.10.0
  • release/v1.2.4
  • release/v1.2.4-RC1
  • release/v1.3.0
  • release/v1.3.0-RC1
  • release/v1.3.1
  • release/v1.3.2
  • release/v1.3.2-RC1
  • release/v1.4.0
  • release/v1.4.0-RC1
  • release/v1.4.0-RC2
  • release/v1.4.1
  • release/v1.4.1-RC1
  • release/v1.5.0
  • release/v1.5.0-RC1
  • release/v1.9.0-RC1
  • release/v1.9.0-RC2
  • release/v1.9.3
  • release/v1.9.4
  • release/v1.9.5
  • release/v1.9.6
  • release/v1.9.7
  • release/v1.9DOM
  • release/v1.9DOM.0
  • release/v1.9DOM.1
  • release/v1.9DOM.1-RC1
  • release/v1.9DOM.2
  • release/v1.9DOM.2-RC1
  • release/v2.0.0-RC1
  • update-copyright-notice
  • v2-prerelease

06 May 2026 07:42PM UTC coverage: 84.952% (-0.08%) from 85.027%
25497188798

push

gh-ci

vchaindz
perf(sql): add reduceBool fast path to skip *Bool boxing in COUNT(*)

CmpBoolExp.reduce, BinBoolExp.reduce, and NotBoolExp.reduce each return
&Bool{...} per call. On the issue #2093 shape (4 comparisons + 3 ANDs in
WHERE), that is 7 boxed-Bool allocations per matched row.

Add a parallel reduceBool method to Bool, NullValue, CmpBoolExp, BinBoolExp,
and NotBoolExp that returns (val, isNull, err) directly. Composition through
AND/OR trees is handled by reduceBoolValueExp, which dispatches to the fast
path for known boolean exps and falls back to reduce + type-check for
unknown ones (LikeBoolExp, ExistsBoolExp, InListExp, ColSelector...). Slow
path semantics are preserved exactly: the fallback path is the same code
that previously lived inline in CountAllWithKeyFilter.

CountAllWithKeyFilter now calls reduceBoolValueExp instead of cond.reduce +
type assertion. Other reduce call sites are unchanged.

30 of 82 new or added lines in 2 files covered. (36.59%)

15 existing lines in 1 file now uncovered.

45204 of 53211 relevant lines covered (84.95%)

126091.27 hits per line

Relevant lines Covered
Build:
Build:
53211 RELEVANT LINES 45204 COVERED LINES
126091.27 HITS PER LINE
Source Files on master
  • Tree
  • List 311
  • Changed 2
  • Source Changed 0
  • Coverage Changed 2
Coverage ∆ File Lines Relevant Covered Missed Hits/Line

Recent builds

Builds Branch Commit Type Ran Committer Via Coverage
25497188798 master perf(sql): add reduceBool fast path to skip *Bool boxing in COUNT(*) CmpBoolExp.reduce, BinBoolExp.reduce, and NotBoolExp.reduce each return &Bool{...} per call. On the issue #2093 shape (4 comparisons + 3 ANDs in WHERE), that is 7 boxed-Bool all... push 07 May 2026 01:05PM UTC vchaindz gh-ci
84.95
25383378086 master fix(server): tolerate unloaded databases in DatabaseList (#1997) DatabaseListV2 called CurrentState() unconditionally for every entry, so a single closed/unloadable DB caused the whole listing to fail with "already closed" — masking which DB was ... push 05 May 2026 02:53PM UTC vchaindz gh-ci
85.03
25372730249 master feat(immuadmin): expose sysadmin permission in user CLI (#2052) `auth.PermissionSysAdmin` was already a recognised permission in the auth layer but the immuadmin CLI's permissionFromString switch only covered read / readwrite / admin, so there wa... push 05 May 2026 11:14AM UTC vchaindz gh-ci
85.03
25371930019 master test(sql): pin secondary-index selection for plain WHERE equality (#2080) The fix landed in v1.11.0 (commit 4e9926b2) but the planner behaviour had no targeted regression test. Mirror the reporter's schema (varchar/integer columns each with a sin... push 05 May 2026 10:56AM UTC vchaindz gh-ci
85.04
25366442695 master chore(tests): add hot-restore reproducer for issue #2061 Drives a two-instance src/dst immudb setup through a SQL workload designed to surface the "indexing failed at ... due to error: tbtree: key not found" + 60s freeze symptom reported in #2061... push 05 May 2026 08:49AM UTC vchaindz gh-ci
85.04
25365079973 chore/test-followups chore(tests): add hot-restore reproducer for issue #2061 Drives a two-instance src/dst immudb setup through a SQL workload designed to surface the "indexing failed at ... due to error: tbtree: key not found" + 60s freeze symptom reported in #2061... Pull #2095 05 May 2026 08:15AM UTC vchaindz gh-ci
85.03
25364743170 master chore(deps): bump jackc/pgx/v5 v5.9.1 -> v5.9.2 (CVE-2026-41889) Patches a low-severity SQL-injection edge case in pgx's simple-protocol codepath when a dollar-quoted string literal embeds attacker-controllable placeholder text (GHSA-j88v-2chj-qf... push 05 May 2026 08:08AM UTC vchaindz gh-ci
85.04
25361615784 feat/s3performance chore(deps): bump jackc/pgx/v5 v5.9.1 -> v5.9.2 (CVE-2026-41889) Patches a low-severity SQL-injection edge case in pgx's simple-protocol codepath when a dollar-quoted string literal embeds attacker-controllable placeholder text (GHSA-j88v-2chj-qf... Pull #2094 05 May 2026 06:43AM UTC vchaindz gh-ci
85.05
25361461455 feat/s3performance test: cover lazy_remote_reader stubs and count_row_reader getters Adds two test files for zero-coverage interface stubs flagged by Coveralls on PR #2094. Test-only - no production-code changes. embedded/appendable/remoteapp/lazy_remote_reader_te... Pull #2094 05 May 2026 06:38AM UTC vchaindz gh-ci
85.04
25360351619 feat/s3performance perf: hot-path allocation and lock-contention fixes Seven independent improvements driven from a manual review of allocations and lock-holding patterns in the read/write hot paths. Each fix is self-contained and on-disk format-neutral. P1 — sync... Pull #2094 05 May 2026 06:04AM UTC vchaindz gh-ci
84.99
See All Builds (4065)
  • Repo on GitHub
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