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

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

Build:
Build:
LAST BUILD BRANCH: datetime2fromparts_bugfix
DEFAULT BRANCH: BABEL_5_X_DEV
Ran 11 Sep 2025 09:26AM UTC
Jobs 1
Files 115
Run time 3min
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

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>

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

159 existing lines in 1 file now uncovered.

43927 of 59210 relevant lines covered (74.19%)

274298.85 hits per line

New Missed Lines in Diff

Lines Coverage ∆ File
4
72.73
2.73% contrib/babelfishpg_tsql/src/bbf_parallel_query.c

Uncovered Existing Lines

Lines Coverage ∆ File
159
91.61
0.08% contrib/babelfishpg_tsql/src/pl_handler.c
Jobs
ID Job ID Ran Files Coverage
1 17639377792.1 11 Sep 2025 09:26AM UTC 115
74.19
GitHub Action Run
Source Files on build 17639377792
  • Tree
  • List 115
  • Changed 3
  • Source Changed 3
  • Coverage Changed 3
Coverage ∆ File Lines Relevant Covered Missed Hits/Line
  • Back to Repo
  • Github Actions Build #17639377792
  • c333987e on github
  • Prev Build on BABEL_3_X_DEV (#16511220643)
  • Next Build on BABEL_3_X_DEV (#17671290798)
  • 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

© 2025 Coveralls, Inc