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

babelfish-for-postgresql / babelfish_extensions / 17639377792 / 1
74%
BABEL_5_X_DEV: 77%

Build:
Build:
LAST BUILD BRANCH: jira-babel-6207_upgrade_5_X
DEFAULT BRANCH: BABEL_5_X_DEV
Ran 11 Sep 2025 09:26AM UTC
Files 115
Run time 7s
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:54AM UTC coverage: 74.188% (+0.01%) from 74.177%
17639377792.1

push

github

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

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>

43927 of 59210 relevant lines covered (74.19%)

274298.85 hits per line

Source Files on job 17639377792.1
  • Tree
  • List 115
  • Changed 3
  • Source Changed 3
  • Coverage Changed 3
Coverage ∆ File Lines Relevant Covered Missed Hits/Line
  • Back to Build 17639377792
  • c333987e on github
  • Prev Job for on BABEL_3_X_DEV (#16511220643.1)
  • Next Job for on BABEL_3_X_DEV (#17671290798.1)
  • 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