Bug 214851 (db43Port)
Summary: | integrating db43 into ds70 | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Product: | [Retired] 389 | Reporter: | Ulf Weltman <ulf.weltman> | ||||||||
Component: | Database - General | Assignee: | Rich Megginson <rmeggins> | ||||||||
Status: | CLOSED CURRENTRELEASE | QA Contact: | Viktor Ashirov <vashirov> | ||||||||
Severity: | medium | Docs Contact: | |||||||||
Priority: | medium | ||||||||||
Version: | 1.0.2 | CC: | amsharma | ||||||||
Target Milestone: | --- | Keywords: | VerifiedUpstream | ||||||||
Target Release: | --- | ||||||||||
Hardware: | All | ||||||||||
OS: | All | ||||||||||
Whiteboard: | |||||||||||
Fixed In Version: | Doc Type: | Bug Fix | |||||||||
Doc Text: | Story Points: | --- | |||||||||
Clone Of: | Environment: | ||||||||||
Last Closed: | 2015-12-07 16:51:38 UTC | Type: | --- | ||||||||
Regression: | --- | Mount Type: | --- | ||||||||
Documentation: | --- | CRM: | |||||||||
Verified Versions: | Category: | --- | |||||||||
oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |||||||||
Cloudforms Team: | --- | Target Upstream Version: | |||||||||
Embargoed: | |||||||||||
Bug Depends On: | |||||||||||
Bug Blocks: | 427409 | ||||||||||
Attachments: |
|
Description
Ulf Weltman
2006-11-09 18:50:42 UTC
Exposing this bug to the wider FDS audience. We are going to try to get this into Fedora soon. New URL due to Oracle acquisition: http://www.oracle.com/technology/documentation/berkeley-db/db/ref/upgrade.4.3/toc.html We'll also have to change the code so that the changes are isolated by version e.g. #if 1000*DB_VERSION_MAJOR + 100*DB_VERSION_MINOR >= 4300 db_env_set_func_seek((int (*)())dblayer_seek43_large); #else db_env_set_func_seek((int (*)())dblayer_seek24_large); #endif Because we will need to be able to support building our code against multiple bdb versions. Created attachment 141287 [details]
diffs
Created attachment 141288 [details]
diffs
Comment on attachment 141287 [details]
diffs
whoops
Created attachment 141291 [details]
cvs commit log
Reviewed by: nkinder (Thanks!)
Files: see diff
Branch: HEAD
Fix Description: I took the original diffs posted by Ulf and merged them in
with our code which has changed slightly since the diffs were originally
generated. I also put #if directives like the following:
#if 1000*DB_VERSION_MAJOR + 100*DB_VERSION_MINOR >= 4300
... db43 features ...
#else
... db42 features ...
#endif
so that we can use both db42 and db43.
Platforms tested: RHEL4/FC5
Flag Day: no
Doc impact: no
Just mark as verified upstream |