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

babelfish-for-postgresql / babelfish_extensions / 17639046326
76%
BABEL_5_X_DEV: 77%

Build:
Build:
LAST BUILD BRANCH: 5577-5x
DEFAULT BRANCH: BABEL_5_X_DEV
Ran 11 Sep 2025 09:04AM UTC
Jobs 1
Files 120
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

11 Sep 2025 08:40AM UTC coverage: 75.982% (+0.001%) from 75.981%
17639046326

push

github

web-flow
Fixed error when parallel worker tries to access rel with oid > INT32_MAX (#4065) (#4077)

As part of the commit 6da7ff0, we introduced logic to skip permission checking of Babelfish temp table on Parallel
workers. But logic will run into an error if Oid is greated than INT32_MAX because Bitmapset was used to
communicate Oids from leader node to parallel worker. This Bitmapset can only work with signed integer meaning if
Oid value is greater than INT32_MAX then it will be rounded off to negative value in signed integer and Bitmapset will
throw an error that it can't handle negative values.

In order to fix this overflow issue, we create one more bitmapset especially for Oid > INT32_MAX and communicate it
with parallel worker. Construction of bitmapset now would look like this,

if relid <= INT32_MAX
    add relid to temp_relids
else
    add (relid - INT32_MAX - 1) to temp_relids_beyond_int32

Task: BABEL-6079
Signed-off-by: Dipesh Dhameliya <dddhamel@amazon.com>

15 of 19 new or added lines in 1 file covered. (78.95%)

49834 of 65587 relevant lines covered (75.98%)

381657.4 hits per line

New Missed Lines in Diff

Lines Coverage ∆ File
4
67.8
4.16% contrib/babelfishpg_tsql/src/bbf_parallel_query.c
Jobs
ID Job ID Ran Files Coverage
1 17639046326.1 11 Sep 2025 09:04AM UTC 120
75.98
GitHub Action Run
Source Files on build 17639046326
  • Tree
  • List 120
  • Changed 1
  • Source Changed 1
  • Coverage Changed 1
Coverage ∆ File Lines Relevant Covered Missed Hits/Line
  • Back to Repo
  • Github Actions Build #17639046326
  • 2fd04362 on github
  • Prev Build on BABEL_4_X_DEV (#17629084774)
  • Next Build on BABEL_4_X_DEV (#17672990813)
  • Delete
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